Commit a97c49af authored by navin patidar's avatar navin patidar Committed by Greg Kroah-Hartman

staging: rtl8188eu: Rename function ODM_GetRightChnlPlaceforIQK()

Rename CamelCase function name.
Signed-off-by: default avatarnavin patidar <navin.patidar@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cc5bcbbd
...@@ -23,16 +23,16 @@ ...@@ -23,16 +23,16 @@
#define ODM_TXPWRTRACK_MAX_IDX_88E 6 #define ODM_TXPWRTRACK_MAX_IDX_88E 6
static u8 ODM_GetRightChnlPlaceforIQK(u8 chnl) static u8 get_right_chnl_for_iqk(u8 chnl)
{ {
u8 channel_all[ODM_TARGET_CHNL_NUM_2G_5G] = { u8 channel_all[ODM_TARGET_CHNL_NUM_2G_5G] = {
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64,
100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122,
124, 126, 128, 130, 132, 134, 136, 138, 140, 149, 151, 153, 124, 126, 128, 130, 132, 134, 136, 138, 140, 149, 151, 153,
155, 157, 159, 161, 163, 165 155, 157, 159, 161, 163, 165
}; };
u8 place = chnl; u8 place = chnl;
if (chnl > 14) { if (chnl > 14) {
for (place = 14; place < sizeof(channel_all); place++) { for (place = 14; place < sizeof(channel_all); place++) {
...@@ -1383,7 +1383,7 @@ void PHY_IQCalibrate_8188E(struct adapter *adapt, bool recovery) ...@@ -1383,7 +1383,7 @@ void PHY_IQCalibrate_8188E(struct adapter *adapt, bool recovery)
pathb_fill_iqk(adapt, pathbok, result, final_candidate, (RegEC4 == 0)); pathb_fill_iqk(adapt, pathbok, result, final_candidate, (RegEC4 == 0));
} }
Indexforchannel = ODM_GetRightChnlPlaceforIQK(pHalData->CurrentChannel); Indexforchannel = get_right_chnl_for_iqk(pHalData->CurrentChannel);
/* To Fix BSOD when final_candidate is 0xff */ /* To Fix BSOD when final_candidate is 0xff */
/* by sherry 20120321 */ /* by sherry 20120321 */
......
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