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

staging: vt6656: rename BBvSetDeepSleep to vnt_set_deep_sleep

Dropping BB

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
e8e072da de8690a2

+4 -4
+2 -2
drivers/staging/vt6656/baseband.c
··· 558 558 } 559 559 560 560 /* 561 - * Description: BBvSetDeepSleep 561 + * Description: vnt_set_deep_sleep 562 562 * 563 563 * Parameters: 564 564 * In: ··· 569 569 * Return Value: none 570 570 * 571 571 */ 572 - void BBvSetDeepSleep(struct vnt_private *priv) 572 + void vnt_set_deep_sleep(struct vnt_private *priv) 573 573 { 574 574 vnt_control_out_u8(priv, MESSAGE_REQUEST_BBREG, 0x0c, 0x17);/* CR12 */ 575 575 vnt_control_out_u8(priv, MESSAGE_REQUEST_BBREG, 0x0d, 0xB9);/* CR13 */
+1 -1
drivers/staging/vt6656/baseband.h
··· 97 97 void vnt_set_vga_gain_offset(struct vnt_private *, u8); 98 98 void vnt_set_antenna_mode(struct vnt_private *, u8); 99 99 int vnt_vt3184_init(struct vnt_private *); 100 - void BBvSetDeepSleep(struct vnt_private *); 100 + void vnt_set_deep_sleep(struct vnt_private *); 101 101 void BBvExitDeepSleep(struct vnt_private *); 102 102 void BBvUpdatePreEDThreshold(struct vnt_private *, int scanning); 103 103
+1 -1
drivers/staging/vt6656/card.c
··· 750 750 751 751 vnt_mac_reg_bits_off(priv, MAC_REG_HOSTCR, HOSTCR_RXON); 752 752 753 - BBvSetDeepSleep(priv); 753 + vnt_set_deep_sleep(priv); 754 754 755 755 return ret; 756 756 }