trivial: Merge some GtkDoc introspection fixes

This commit is contained in:
Richard Hughes 2020-11-30 09:18:45 +00:00
parent 6afc6542c1
commit 2bbb7d2b40
6 changed files with 14 additions and 6 deletions

View File

@ -32,6 +32,7 @@ typedef enum {
* @filename: A filename. * @filename: A filename.
* @bytes: The blob referenced by @filename. * @bytes: The blob referenced by @filename.
* @user_data: User data. * @user_data: User data.
* @error: a #GError or NULL
* *
* Specifies the type of archive iteration function. * Specifies the type of archive iteration function.
*/ */

View File

@ -12,10 +12,10 @@
#include "fu-firmware-image-private.h" #include "fu-firmware-image-private.h"
/** /**
* SECTION:fu-firmware_image * SECTION:fu-firmware-image
* @short_description: a firmware_image file * @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 { typedef struct {

View File

@ -41,6 +41,7 @@ typedef enum {
FU_HID_DEVICE_FLAG_RETRY_FAILURE = 1 << 2, FU_HID_DEVICE_FLAG_RETRY_FAILURE = 1 << 2,
FU_HID_DEVICE_FLAG_NO_KERNEL_UNBIND = 1 << 3, FU_HID_DEVICE_FLAG_NO_KERNEL_UNBIND = 1 << 3,
FU_HID_DEVICE_FLAG_NO_KERNEL_REBIND = 1 << 4, FU_HID_DEVICE_FLAG_NO_KERNEL_REBIND = 1 << 4,
/*< private >*/
FU_HID_DEVICE_FLAG_LAST FU_HID_DEVICE_FLAG_LAST
} FuHidDeviceFlags; } FuHidDeviceFlags;

View File

@ -315,7 +315,7 @@ gboolean fu_plugin_udev_device_changed (FuPlugin *plugin,
/** /**
* fu_plugin_device_added * fu_plugin_device_added
* @plugin: A #FuPlugin * @plugin: A #FuPlugin
* @device: A #FuDevice * @dev: A #FuDevice
* *
* Function run when the subclassed device has been added. * Function run when the subclassed device has been added.
* *
@ -339,7 +339,7 @@ gboolean fu_plugin_device_removed (FuPlugin *plugin,
/** /**
* fu_plugin_device_created * fu_plugin_device_created
* @plugin: A #FuPlugin * @plugin: A #FuPlugin
* @device: A #FuDevice * @dev: A #FuDevice
* @error: A #GError or %NULL * @error: A #GError or %NULL
* *
* Function run when the subclassed device has been created. * Function run when the subclassed device has been created.
@ -352,7 +352,7 @@ gboolean fu_plugin_device_created (FuPlugin *plugin,
/** /**
* fu_plugin_device_registered * fu_plugin_device_registered
* @plugin: A #FuPlugin * @plugin: A #FuPlugin
* @device: A #FuDevice * @dev: A #FuDevice
* *
* Function run when device registered from another plugin. * Function run when device registered from another plugin.
* *

View File

@ -1563,6 +1563,8 @@ fu_plugin_runner_composite_cleanup (FuPlugin *self, GPtrArray *devices, GError *
/** /**
* fu_plugin_runner_update_prepare: * fu_plugin_runner_update_prepare:
* @self: a #FuPlugin * @self: a #FuPlugin
* @flags: #FwupdInstallFlags
* @device: a #FuDevice
* @error: a #GError or NULL * @error: a #GError or NULL
* *
* Runs the update_prepare routine for the plugin * 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: * fu_plugin_runner_update_cleanup:
* @self: a #FuPlugin * @self: a #FuPlugin
* @flags: #FwupdInstallFlags
* @device: a #FuDevice
* @error: a #GError or NULL * @error: a #GError or NULL
* *
* Runs the update_cleanup routine for the plugin * 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: * fu_plugin_runner_update_reload:
* @self: a #FuPlugin * @self: a #FuPlugin
* @device: A #FuDevice
* @error: a #GError or NULL * @error: a #GError or NULL
* *
* Runs reload routine for a device * Runs reload routine for a device

View File

@ -42,6 +42,7 @@ struct _FuUdevDeviceClass
* @FU_UDEV_DEVICE_FLAG_OPEN_WRITE: Open the device write-only * @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_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_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(). * Flags used when opening the device using fu_device_open().
**/ **/