mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-29 03:22:04 +00:00
trivial: Merge some GtkDoc introspection fixes
This commit is contained in:
parent
6afc6542c1
commit
2bbb7d2b40
@ -32,6 +32,7 @@ typedef enum {
|
||||
* @filename: A filename.
|
||||
* @bytes: The blob referenced by @filename.
|
||||
* @user_data: User data.
|
||||
* @error: a #GError or NULL
|
||||
*
|
||||
* Specifies the type of archive iteration function.
|
||||
*/
|
||||
|
@ -12,10 +12,10 @@
|
||||
#include "fu-firmware-image-private.h"
|
||||
|
||||
/**
|
||||
* SECTION:fu-firmware_image
|
||||
* @short_description: a firmware_image file
|
||||
* SECTION:fu-firmware-image
|
||||
* @short_description: a firmware image section
|
||||
*
|
||||
* An object that represents a firmware_image file.
|
||||
* An object that represents an image within the firmware file.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
|
@ -41,6 +41,7 @@ typedef enum {
|
||||
FU_HID_DEVICE_FLAG_RETRY_FAILURE = 1 << 2,
|
||||
FU_HID_DEVICE_FLAG_NO_KERNEL_UNBIND = 1 << 3,
|
||||
FU_HID_DEVICE_FLAG_NO_KERNEL_REBIND = 1 << 4,
|
||||
/*< private >*/
|
||||
FU_HID_DEVICE_FLAG_LAST
|
||||
} FuHidDeviceFlags;
|
||||
|
||||
|
@ -315,7 +315,7 @@ gboolean fu_plugin_udev_device_changed (FuPlugin *plugin,
|
||||
/**
|
||||
* fu_plugin_device_added
|
||||
* @plugin: A #FuPlugin
|
||||
* @device: A #FuDevice
|
||||
* @dev: A #FuDevice
|
||||
*
|
||||
* Function run when the subclassed device has been added.
|
||||
*
|
||||
@ -339,7 +339,7 @@ gboolean fu_plugin_device_removed (FuPlugin *plugin,
|
||||
/**
|
||||
* fu_plugin_device_created
|
||||
* @plugin: A #FuPlugin
|
||||
* @device: A #FuDevice
|
||||
* @dev: A #FuDevice
|
||||
* @error: A #GError or %NULL
|
||||
*
|
||||
* Function run when the subclassed device has been created.
|
||||
@ -352,7 +352,7 @@ gboolean fu_plugin_device_created (FuPlugin *plugin,
|
||||
/**
|
||||
* fu_plugin_device_registered
|
||||
* @plugin: A #FuPlugin
|
||||
* @device: A #FuDevice
|
||||
* @dev: A #FuDevice
|
||||
*
|
||||
* Function run when device registered from another plugin.
|
||||
*
|
||||
|
@ -1563,6 +1563,8 @@ fu_plugin_runner_composite_cleanup (FuPlugin *self, GPtrArray *devices, GError *
|
||||
/**
|
||||
* fu_plugin_runner_update_prepare:
|
||||
* @self: a #FuPlugin
|
||||
* @flags: #FwupdInstallFlags
|
||||
* @device: a #FuDevice
|
||||
* @error: a #GError or NULL
|
||||
*
|
||||
* Runs the update_prepare routine for the plugin
|
||||
@ -1583,6 +1585,8 @@ fu_plugin_runner_update_prepare (FuPlugin *self, FwupdInstallFlags flags, FuDevi
|
||||
/**
|
||||
* fu_plugin_runner_update_cleanup:
|
||||
* @self: a #FuPlugin
|
||||
* @flags: #FwupdInstallFlags
|
||||
* @device: a #FuDevice
|
||||
* @error: a #GError or NULL
|
||||
*
|
||||
* Runs the update_cleanup routine for the plugin
|
||||
@ -1645,6 +1649,7 @@ fu_plugin_runner_update_detach (FuPlugin *self, FuDevice *device, GError **error
|
||||
/**
|
||||
* fu_plugin_runner_update_reload:
|
||||
* @self: a #FuPlugin
|
||||
* @device: A #FuDevice
|
||||
* @error: a #GError or NULL
|
||||
*
|
||||
* Runs reload routine for a device
|
||||
|
@ -42,6 +42,7 @@ struct _FuUdevDeviceClass
|
||||
* @FU_UDEV_DEVICE_FLAG_OPEN_WRITE: Open the device write-only
|
||||
* @FU_UDEV_DEVICE_FLAG_VENDOR_FROM_PARENT: Get the vendor ID fallback from the parent
|
||||
* @FU_UDEV_DEVICE_FLAG_USE_CONFIG: Read and write from the device config
|
||||
* @FU_UDEV_DEVICE_FLAG_OPEN_NONBLOCK: Open nonblocking, e.g. O_NONBLOCK
|
||||
*
|
||||
* Flags used when opening the device using fu_device_open().
|
||||
**/
|
||||
|
Loading…
Reference in New Issue
Block a user