mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-07 12:25:38 +00:00
trivial: fix various spelling errors
This commit is contained in:
parent
531a223b80
commit
c29b398ad0
@ -322,7 +322,7 @@ fu_device_altos_tty_read (FuDeviceAltos *device,
|
|||||||
g_set_error (error,
|
g_set_error (error,
|
||||||
FWUPD_ERROR,
|
FWUPD_ERROR,
|
||||||
FWUPD_ERROR_READ,
|
FWUPD_ERROR_READ,
|
||||||
"no data recieved from device in %ums",
|
"no data received from device in %ums",
|
||||||
timeout_ms);
|
timeout_ms);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -75,7 +75,7 @@ typedef enum {
|
|||||||
FU_EBITDO_PKT_CMD_GET_VERIFICATION_ID = 0x1a, /* verification id (only BT) */
|
FU_EBITDO_PKT_CMD_GET_VERIFICATION_ID = 0x1a, /* verification id (only BT) */
|
||||||
FU_EBITDO_PKT_CMD_VERIFY_ERROR = 0x1b, /* verification error */
|
FU_EBITDO_PKT_CMD_VERIFY_ERROR = 0x1b, /* verification error */
|
||||||
FU_EBITDO_PKT_CMD_VERIFY_OK = 0x1c, /* verification successful */
|
FU_EBITDO_PKT_CMD_VERIFY_OK = 0x1c, /* verification successful */
|
||||||
FU_EBITDO_PKT_CMD_TRANSFER_TIMEOUT = 0x1d, /* send or recieve data timeout */
|
FU_EBITDO_PKT_CMD_TRANSFER_TIMEOUT = 0x1d, /* send or receive data timeout */
|
||||||
FU_EBITDO_PKT_CMD_GET_VERSION = 0x21, /* get fw ver, joystick mode */
|
FU_EBITDO_PKT_CMD_GET_VERSION = 0x21, /* get fw ver, joystick mode */
|
||||||
FU_EBITDO_PKT_CMD_GET_VERSION_RESPONSE = 0x22, /* get fw version response */
|
FU_EBITDO_PKT_CMD_GET_VERSION_RESPONSE = 0x22, /* get fw version response */
|
||||||
FU_EBITDO_PKT_CMD_FW_LAST
|
FU_EBITDO_PKT_CMD_FW_LAST
|
||||||
|
@ -275,7 +275,7 @@ fu_plugin_unlock (FuPlugin *plugin,
|
|||||||
} else if (rc == 1)
|
} else if (rc == 1)
|
||||||
g_debug ("UEFI device is already unlocked");
|
g_debug ("UEFI device is already unlocked");
|
||||||
else if (rc == 2)
|
else if (rc == 2)
|
||||||
g_debug ("Succesfully unlocked UEFI device");
|
g_debug ("Successfully unlocked UEFI device");
|
||||||
else if (rc == 3)
|
else if (rc == 3)
|
||||||
g_debug ("UEFI device will be unlocked on next reboot");
|
g_debug ("UEFI device will be unlocked on next reboot");
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -40,7 +40,7 @@ lu_hidpp_msg_dev_id_to_string (LuHidppMsg *msg)
|
|||||||
if (msg->device_id == HIDPP_DEVICE_ID_WIRED)
|
if (msg->device_id == HIDPP_DEVICE_ID_WIRED)
|
||||||
return "wired";
|
return "wired";
|
||||||
if (msg->device_id == HIDPP_DEVICE_ID_RECEIVER)
|
if (msg->device_id == HIDPP_DEVICE_ID_RECEIVER)
|
||||||
return "recieiver";
|
return "receiver";
|
||||||
if (msg->device_id == HIDPP_DEVICE_ID_UNSET)
|
if (msg->device_id == HIDPP_DEVICE_ID_UNSET)
|
||||||
return "unset";
|
return "unset";
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -56,7 +56,7 @@ fu_plugin_startup (FuPlugin *plugin, GError **error)
|
|||||||
NULL,
|
NULL,
|
||||||
error);
|
error);
|
||||||
if (data->proxy == NULL) {
|
if (data->proxy == NULL) {
|
||||||
g_prefix_error (error, "failed to conect to upower: ");
|
g_prefix_error (error, "failed to connect to upower: ");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -639,7 +639,7 @@ fu_engine_check_version_requirement (AsApp *app,
|
|||||||
|
|
||||||
/* check args */
|
/* check args */
|
||||||
if (version == NULL) {
|
if (version == NULL) {
|
||||||
g_debug ("no paramater given for %s{%s}",
|
g_debug ("no parameter given for %s{%s}",
|
||||||
as_require_kind_to_string (kind), id);
|
as_require_kind_to_string (kind), id);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user