Commit 1c3e56f9 authored by Nandini Hanumanthagowda's avatar Nandini Hanumanthagowda Committed by Greg Kroah-Hartman

staging: vt6656: removed line over 80 chars warning

Removed the checkpatch warning of line over 80 chars
by breaking the long line into sensible chunks of 2 lines
to comply with coding style
Signed-off-by: default avatarNandini Hanumanthagowda <nandu.hgowda@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent efbe5182
...@@ -125,7 +125,8 @@ int FIRMWAREbCheckVersion(struct vnt_private *pDevice) ...@@ -125,7 +125,8 @@ int FIRMWAREbCheckVersion(struct vnt_private *pDevice)
2, 2,
(u8 *) &(pDevice->wFirmwareVersion)); (u8 *) &(pDevice->wFirmwareVersion));
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Firmware Version [%04x]\n", pDevice->wFirmwareVersion); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Firmware Version [%04x]\n",
pDevice->wFirmwareVersion);
if (ntStatus != STATUS_SUCCESS) { if (ntStatus != STATUS_SUCCESS) {
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Firmware Invalid.\n"); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Firmware Invalid.\n");
return false; return false;
...@@ -134,7 +135,8 @@ int FIRMWAREbCheckVersion(struct vnt_private *pDevice) ...@@ -134,7 +135,8 @@ int FIRMWAREbCheckVersion(struct vnt_private *pDevice)
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"In Loader.\n"); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"In Loader.\n");
return false; return false;
} }
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Firmware Version [%04x]\n", pDevice->wFirmwareVersion); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Firmware Version [%04x]\n",
pDevice->wFirmwareVersion);
if (pDevice->wFirmwareVersion < FIRMWARE_VERSION) { if (pDevice->wFirmwareVersion < FIRMWARE_VERSION) {
/* branch to loader for download new firmware */ /* branch to loader for download new firmware */
FIRMWAREbBrach2Sram(pDevice); FIRMWAREbBrach2Sram(pDevice);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment