mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
Staging: RT2860: Cleaned all bar one in chlist.h
I have cleaned all errors and all bar one warning in chlist.h. The remaining warning is a line over 80 characters warning. Breaking it doesnt look all that easy. Signed-off-by: Neil Munro <neilmunro@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
e3eb7cdd11
commit
e7d122b55d
@ -73,35 +73,31 @@ struct rt_ch_freq_map {
|
||||
extern struct rt_ch_freq_map CH_HZ_ID_MAP[];
|
||||
extern int CH_HZ_ID_MAP_NUM;
|
||||
|
||||
#define MAP_CHANNEL_ID_TO_KHZ(_ch, _khz) \
|
||||
do{ \
|
||||
int _chIdx; \
|
||||
for (_chIdx = 0; _chIdx < CH_HZ_ID_MAP_NUM; _chIdx++)\
|
||||
{ \
|
||||
if ((_ch) == CH_HZ_ID_MAP[_chIdx].channel) \
|
||||
{ \
|
||||
(_khz) = CH_HZ_ID_MAP[_chIdx].freqKHz * 1000; \
|
||||
break; \
|
||||
} \
|
||||
} \
|
||||
if (_chIdx == CH_HZ_ID_MAP_NUM) \
|
||||
(_khz) = 2412000; \
|
||||
}while(0)
|
||||
#define MAP_CHANNEL_ID_TO_KHZ(_ch, _khz) \
|
||||
do { \
|
||||
int _chIdx; \
|
||||
for (_chIdx = 0; _chIdx < CH_HZ_ID_MAP_NUM; _chIdx++) {\
|
||||
if ((_ch) == CH_HZ_ID_MAP[_chIdx].channel) { \
|
||||
(_khz) = CH_HZ_ID_MAP[_chIdx].freqKHz * 1000;\
|
||||
break; \
|
||||
} \
|
||||
} \
|
||||
if (_chIdx == CH_HZ_ID_MAP_NUM) \
|
||||
(_khz) = 2412000; \
|
||||
} while (0)
|
||||
|
||||
#define MAP_KHZ_TO_CHANNEL_ID(_khz, _ch) \
|
||||
do{ \
|
||||
int _chIdx; \
|
||||
for (_chIdx = 0; _chIdx < CH_HZ_ID_MAP_NUM; _chIdx++)\
|
||||
{ \
|
||||
if ((_khz) == CH_HZ_ID_MAP[_chIdx].freqKHz) \
|
||||
{ \
|
||||
(_ch) = CH_HZ_ID_MAP[_chIdx].channel; \
|
||||
break; \
|
||||
} \
|
||||
} \
|
||||
if (_chIdx == CH_HZ_ID_MAP_NUM) \
|
||||
(_ch) = 1; \
|
||||
}while(0)
|
||||
do { \
|
||||
int _chIdx; \
|
||||
for (_chIdx = 0; _chIdx < CH_HZ_ID_MAP_NUM; _chIdx++) {\
|
||||
if ((_khz) == CH_HZ_ID_MAP[_chIdx].freqKHz) {\
|
||||
(_ch) = CH_HZ_ID_MAP[_chIdx].channel; \
|
||||
break; \
|
||||
} \
|
||||
} \
|
||||
if (_chIdx == CH_HZ_ID_MAP_NUM) \
|
||||
(_ch) = 1; \
|
||||
} while (0)
|
||||
|
||||
void BuildChannelListEx(struct rt_rtmp_adapter *pAd);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user