Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: vt6656: rename FIRMWAREbCheckVersion to vnt_check_firmware_version

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Malcolm Priestley and committed by
Greg Kroah-Hartman
45d63f89 14321461

+3 -3
+1 -1
drivers/staging/vt6656/firmware.c
··· 109 109 return true; 110 110 } 111 111 112 - int FIRMWAREbCheckVersion(struct vnt_private *priv) 112 + int vnt_check_firmware_version(struct vnt_private *priv) 113 113 { 114 114 int status; 115 115
+1 -1
drivers/staging/vt6656/firmware.h
··· 34 34 35 35 int vnt_download_firmware(struct vnt_private *); 36 36 int vnt_firmware_branch_to_sram(struct vnt_private *); 37 - int FIRMWAREbCheckVersion(struct vnt_private *); 37 + int vnt_check_firmware_version(struct vnt_private *); 38 38 39 39 #endif /* __FIRMWARE_H__ */
+1 -1
drivers/staging/vt6656/main_usb.c
··· 287 287 memcpy(pDevice->abySNAP_RFC1042, abySNAP_RFC1042, ETH_ALEN); 288 288 memcpy(pDevice->abySNAP_Bridgetunnel, abySNAP_Bridgetunnel, ETH_ALEN); 289 289 290 - if (!FIRMWAREbCheckVersion(pDevice)) { 290 + if (!vnt_check_firmware_version(pDevice)) { 291 291 if (vnt_download_firmware(pDevice) == true) { 292 292 if (vnt_firmware_branch_to_sram(pDevice) == false) { 293 293 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO