]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging: vt6656: rename BBvSetDeepSleep to vnt_set_deep_sleep
authorMalcolm Priestley <tvboxspy@gmail.com>
Wed, 16 Jul 2014 21:21:56 +0000 (22:21 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Jul 2014 01:01:52 +0000 (18:01 -0700)
Dropping BB

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/baseband.c
drivers/staging/vt6656/baseband.h
drivers/staging/vt6656/card.c

index 184f416157f6da6774c2eb361e746d4a94090834..2a6c6eac7fbcf15d469b0ea58a465f81b70ddf8a 100644 (file)
@@ -558,7 +558,7 @@ void vnt_set_vga_gain_offset(struct vnt_private *priv, u8 data)
 }
 
 /*
- * Description: BBvSetDeepSleep
+ * Description: vnt_set_deep_sleep
  *
  * Parameters:
  *  In:
@@ -569,7 +569,7 @@ void vnt_set_vga_gain_offset(struct vnt_private *priv, u8 data)
  * Return Value: none
  *
  */
-void BBvSetDeepSleep(struct vnt_private *priv)
+void vnt_set_deep_sleep(struct vnt_private *priv)
 {
        vnt_control_out_u8(priv, MESSAGE_REQUEST_BBREG, 0x0c, 0x17);/* CR12 */
        vnt_control_out_u8(priv, MESSAGE_REQUEST_BBREG, 0x0d, 0xB9);/* CR13 */
index a3aff07aec6a745930d7b58de762decaacf45a05..f246700812294314fec2198508562fc1e91da2f7 100644 (file)
@@ -97,7 +97,7 @@ void vnt_set_short_slot_time(struct vnt_private *);
 void vnt_set_vga_gain_offset(struct vnt_private *, u8);
 void vnt_set_antenna_mode(struct vnt_private *, u8);
 int vnt_vt3184_init(struct vnt_private *);
-void BBvSetDeepSleep(struct vnt_private *);
+void vnt_set_deep_sleep(struct vnt_private *);
 void BBvExitDeepSleep(struct vnt_private *);
 void BBvUpdatePreEDThreshold(struct vnt_private *, int scanning);
 
index 1cbdfee2888fce23db5b49490e2434014514a778..fd6f6e23d47c976030aa7a6e1e580b64c6101a34 100644 (file)
@@ -750,7 +750,7 @@ int vnt_radio_power_off(struct vnt_private *priv)
 
        vnt_mac_reg_bits_off(priv, MAC_REG_HOSTCR, HOSTCR_RXON);
 
-       BBvSetDeepSleep(priv);
+       vnt_set_deep_sleep(priv);
 
        return ret;
 }