diff options
| author | Tom Rini <trini@konsulko.com> | 2024-09-30 17:48:12 -0600 | 
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2024-09-30 17:48:12 -0600 | 
| commit | 3a0b829efc35227b1079a444f00e0729502197ad (patch) | |
| tree | 0b63050b1d46587a800c1a4e277a69170640da00 /include | |
| parent | ddbcafeb53e7093c58488596bfce6d8823777c3a (diff) | |
| parent | 9cfe0cab3bf135a505e1e163ca442a4e4064d58e (diff) | |
Merge tag 'v2024.10-rc6' into next
Prepare v2024.10-rc6
Diffstat (limited to 'include')
| -rw-r--r-- | include/efi_variable.h | 2 | ||||
| -rw-r--r-- | include/event.h | 2 | ||||
| -rw-r--r-- | include/expo.h | 2 | ||||
| -rw-r--r-- | include/getopt.h | 3 | ||||
| -rw-r--r-- | include/os.h | 16 | 
5 files changed, 11 insertions, 14 deletions
| diff --git a/include/efi_variable.h b/include/efi_variable.h index 223bb9a4a5b..4065cf45eca 100644 --- a/include/efi_variable.h +++ b/include/efi_variable.h @@ -38,7 +38,7 @@ efi_status_t efi_get_variable_int(const u16 *variable_name,  				  void *data, u64 *timep);  /** - * efi_set_variable() - set value of a UEFI variable + * efi_set_variable_int() - set value of a UEFI variable   *   * @variable_name:	name of the variable   * @vendor:		vendor GUID diff --git a/include/event.h b/include/event.h index fb353ad623e..75141a192a4 100644 --- a/include/event.h +++ b/include/event.h @@ -385,7 +385,7 @@ static inline int event_notify_null(enum event_t type)  int event_uninit(void);  /** - * event_uninit() - Set up dynamic events + * event_init() - Set up dynamic events   *   * Init a list of dynamic event handlers, so that these can be added as   * needed diff --git a/include/expo.h b/include/expo.h index 264745f7f01..c235fa2709d 100644 --- a/include/expo.h +++ b/include/expo.h @@ -42,7 +42,7 @@ enum expoact_type {   *   * @type: Action type (EXPOACT_NONE if there is no action)   * @select: Used for EXPOACT_POINT_ITEM and EXPOACT_SELECT - * @id: ID number of the object affected. + * @select.id: ID number of the object affected.   */  struct expo_action {  	enum expoact_type type; diff --git a/include/getopt.h b/include/getopt.h index 8645082da2a..0cf7ee84d6f 100644 --- a/include/getopt.h +++ b/include/getopt.h @@ -20,11 +20,9 @@ struct getopt_state {  	 * parsed all of @argv, then @index will equal @argc.  	 */  	int index; -	/* private: */  	/** @arg_index: Index within the current argument */  	int arg_index;  	union { -		/* public: */  		/**  		 * @opt: Option being parsed when an error occurs. @opt is only  		 * valid when getopt() returns ``?`` or ``:``. @@ -35,7 +33,6 @@ struct getopt_state {  		 * is only valid when getopt() returns an option character.  		 */  		char *arg; -	/* private: */  	};  }; diff --git a/include/os.h b/include/os.h index 4371270a1ee..ae3ca6d42a2 100644 --- a/include/os.h +++ b/include/os.h @@ -24,7 +24,7 @@ struct sandbox_state;  int os_printf(const char *format, ...);  /** - * Access to the OS read() system call + * os_read() - access the OS read() system call   *   * @fd:		File descriptor as returned by os_open()   * @buf:	Buffer to place data @@ -34,7 +34,7 @@ int os_printf(const char *format, ...);  ssize_t os_read(int fd, void *buf, size_t count);  /** - * Access to the OS write() system call + * os_write() - access the OS write() system call   *   * @fd:		File descriptor as returned by os_open()   * @buf:	Buffer containing data to write @@ -44,7 +44,7 @@ ssize_t os_read(int fd, void *buf, size_t count);  ssize_t os_write(int fd, const void *buf, size_t count);  /** - * Access to the OS lseek() system call + * os_lseek() - access the OS lseek() system call   *   * @fd:		File descriptor as returned by os_open()   * @offset:	File offset (based on whence) @@ -67,7 +67,7 @@ off_t os_lseek(int fd, off_t offset, int whence);  off_t os_filesize(int fd);  /** - * Access to the OS open() system call + * os_open() - access the OS open() system call   *   * @pathname:	Pathname of file to open   * @flags:	Flags, like OS_O_RDONLY, OS_O_RDWR @@ -162,7 +162,7 @@ void os_raise_sigalrm(void);  void os_tty_raw(int fd, bool allow_sigs);  /** - * os_fs_restore() - restore the tty to its original mode + * os_fd_restore() - restore the tty to its original mode   *   * Call this to restore the original terminal mode, after it has been changed   * by os_tty_raw(). This is an internal function. @@ -207,14 +207,14 @@ void *os_realloc(void *ptr, size_t length);  void os_usleep(unsigned long usec);  /** - * Gets a monotonic increasing number of nano seconds from the OS + * os_get_nsec() - get monotonically increasing number of nano seconds from OS   * - * Return:	a monotonic increasing time scaled in nano seconds + * Return:	a monotoniccally increasing time scaled in nano seconds   */  uint64_t os_get_nsec(void);  /** - * Parse arguments and update sandbox state. + * os_parse_args() - parse arguments and update sandbox state.   *   * @state:	sandbox state to update   * @argc:	argument count | 
