mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-07 23:37:53 +00:00
trivial: Fix a method prefix to reflect reality
This commit is contained in:
parent
41b1f6c7c4
commit
2fd64ecef8
@ -586,7 +586,7 @@ dfu_device_has_dfuse_support (DfuDevice *device)
|
|||||||
* dfu_device_set_quirks:
|
* dfu_device_set_quirks:
|
||||||
**/
|
**/
|
||||||
static void
|
static void
|
||||||
dfu_target_set_quirks (DfuDevice *device)
|
dfu_device_set_quirks (DfuDevice *device)
|
||||||
{
|
{
|
||||||
DfuDevicePrivate *priv = GET_PRIVATE (device);
|
DfuDevicePrivate *priv = GET_PRIVATE (device);
|
||||||
guint16 vid, pid, release;
|
guint16 vid, pid, release;
|
||||||
@ -652,7 +652,7 @@ dfu_device_new (GUsbDevice *dev)
|
|||||||
priv->platform_id = g_strdup (g_usb_device_get_platform_id (dev));
|
priv->platform_id = g_strdup (g_usb_device_get_platform_id (dev));
|
||||||
|
|
||||||
/* set any quirks on the device before adding targets */
|
/* set any quirks on the device before adding targets */
|
||||||
dfu_target_set_quirks (device);
|
dfu_device_set_quirks (device);
|
||||||
|
|
||||||
/* add each alternate interface, although typically there will
|
/* add each alternate interface, although typically there will
|
||||||
* be only one */
|
* be only one */
|
||||||
|
Loading…
Reference in New Issue
Block a user