mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 08:39:08 -04:00
staging: vt6556: Cleanup coding style: #define
This patch cleanup coding style issues on #defines. Tested by compilation only. Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
33e9ab3d4d
commit
dbf0a03b66
@@ -39,9 +39,9 @@ typedef enum _CARD_PHY_TYPE {
|
||||
PHY_TYPE_11A
|
||||
} CARD_PHY_TYPE, *PCARD_PHY_TYPE;
|
||||
|
||||
#define CB_MAX_CHANNEL_24G 14
|
||||
#define CB_MAX_CHANNEL_5G 42 /* add channel9(5045MHz), 41==>42 */
|
||||
#define CB_MAX_CHANNEL (CB_MAX_CHANNEL_24G+CB_MAX_CHANNEL_5G)
|
||||
#define CB_MAX_CHANNEL_24G 14
|
||||
#define CB_MAX_CHANNEL_5G 42 /* add channel9(5045MHz), 41==>42 */
|
||||
#define CB_MAX_CHANNEL (CB_MAX_CHANNEL_24G + CB_MAX_CHANNEL_5G)
|
||||
|
||||
struct vnt_private;
|
||||
|
||||
|
||||
@@ -439,11 +439,11 @@ struct vnt_private {
|
||||
struct ieee80211_low_level_stats low_stats;
|
||||
};
|
||||
|
||||
#define ADD_ONE_WITH_WRAP_AROUND(uVar, uModulo) { \
|
||||
if ((uVar) >= ((uModulo) - 1)) \
|
||||
(uVar) = 0; \
|
||||
else \
|
||||
(uVar)++; \
|
||||
#define ADD_ONE_WITH_WRAP_AROUND(uVar, uModulo) { \
|
||||
if ((uVar) >= ((uModulo) - 1)) \
|
||||
(uVar) = 0; \
|
||||
else \
|
||||
(uVar)++; \
|
||||
}
|
||||
|
||||
#define fMP_DISCONNECTED 0x00000002
|
||||
|
||||
@@ -75,18 +75,18 @@ MODULE_AUTHOR(DRIVER_AUTHOR);
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_DESCRIPTION(DEVICE_FULL_DRV_NAM);
|
||||
|
||||
#define DEVICE_PARAM(N,D) \
|
||||
static int N[MAX_UINTS]=OPTION_DEFAULT;\
|
||||
module_param_array(N, int, NULL, 0);\
|
||||
MODULE_PARM_DESC(N, D);
|
||||
#define DEVICE_PARAM(N, D) \
|
||||
static int N[MAX_UINTS] = OPTION_DEFAULT; \
|
||||
module_param_array(N, int, NULL, 0); \
|
||||
MODULE_PARM_DESC(N, D)
|
||||
|
||||
#define RX_DESC_DEF0 64
|
||||
DEVICE_PARAM(RxDescriptors0,"Number of receive usb desc buffer");
|
||||
#define RX_DESC_DEF0 64
|
||||
DEVICE_PARAM(RxDescriptors0, "Number of receive usb desc buffer");
|
||||
|
||||
#define TX_DESC_DEF0 64
|
||||
DEVICE_PARAM(TxDescriptors0,"Number of transmit usb desc buffer");
|
||||
#define TX_DESC_DEF0 64
|
||||
DEVICE_PARAM(TxDescriptors0, "Number of transmit usb desc buffer");
|
||||
|
||||
#define CHANNEL_DEF 6
|
||||
#define CHANNEL_DEF 6
|
||||
DEVICE_PARAM(Channel, "Channel number");
|
||||
|
||||
/* PreambleType[] is the preamble length used for transmit.
|
||||
|
||||
Reference in New Issue
Block a user