2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-24 21:24:00 +08:00

staging: vt6656: struct vnt_private rename wFirmwareVersion to firmware_version

Removing camel case

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-07-19 12:30:05 +01:00 committed by Greg Kroah-Hartman
parent 03b7e3548c
commit 8a73f9da48
2 changed files with 6 additions and 6 deletions

View File

@ -299,7 +299,7 @@ struct vnt_private {
struct vnt_interrupt_buffer int_buf;
/* Version control */
u16 wFirmwareVersion;
u16 firmware_version;
u8 byLocalID;
u8 byRFType;
u8 byBBRxConf;

View File

@ -118,24 +118,24 @@ int vnt_check_firmware_version(struct vnt_private *priv)
0,
MESSAGE_REQUEST_VERSION,
2,
(u8 *) &(priv->wFirmwareVersion));
(u8 *)&priv->firmware_version);
dev_dbg(&priv->usb->dev, "Firmware Version [%04x]\n",
priv->wFirmwareVersion);
priv->firmware_version);
if (status != STATUS_SUCCESS) {
dev_dbg(&priv->usb->dev, "Firmware Invalid.\n");
return false;
}
if (priv->wFirmwareVersion == 0xFFFF) {
if (priv->firmware_version == 0xFFFF) {
dev_dbg(&priv->usb->dev, "In Loader.\n");
return false;
}
dev_dbg(&priv->usb->dev, "Firmware Version [%04x]\n",
priv->wFirmwareVersion);
priv->firmware_version);
if (priv->wFirmwareVersion < FIRMWARE_VERSION) {
if (priv->firmware_version < FIRMWARE_VERSION) {
/* branch to loader for download new firmware */
vnt_firmware_branch_to_sram(priv);
return false;