diff options
author | Reinette Chatre <reinette.chatre@intel.com> | 2008-01-14 20:46:25 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:10:03 -0500 |
commit | 8a1b02452862dd30980ad0ef493eed687bc81474 (patch) | |
tree | e4be8fd1dc67b6af1370c0a8dc9e640d0d72a7ae /drivers/net/wireless/iwlwifi/iwl-3945-debug.h | |
parent | e7a2827cbbdb11717877c44cbbdf0fb1d14e890c (diff) |
iwlwifi: style fixes to usage of << and >> operators
The << and >> operators need space on each side.
Cc: Stefano Brivio <stefano.brivio@polimi.it>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Acked-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-3945-debug.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-3945-debug.h | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945-debug.h b/drivers/net/wireless/iwlwifi/iwl-3945-debug.h index ebf016877fee..f853c6b9f76e 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945-debug.h +++ b/drivers/net/wireless/iwlwifi/iwl-3945-debug.h | |||
@@ -75,44 +75,44 @@ static inline void IWL_DEBUG_LIMIT(int level, const char *fmt, ...) | |||
75 | * | 75 | * |
76 | */ | 76 | */ |
77 | 77 | ||
78 | #define IWL_DL_INFO (1<<0) | 78 | #define IWL_DL_INFO (1 << 0) |
79 | #define IWL_DL_MAC80211 (1<<1) | 79 | #define IWL_DL_MAC80211 (1 << 1) |
80 | #define IWL_DL_HOST_COMMAND (1<<2) | 80 | #define IWL_DL_HOST_COMMAND (1 << 2) |
81 | #define IWL_DL_STATE (1<<3) | 81 | #define IWL_DL_STATE (1 << 3) |
82 | 82 | ||
83 | #define IWL_DL_RADIO (1<<7) | 83 | #define IWL_DL_RADIO (1 << 7) |
84 | #define IWL_DL_POWER (1<<8) | 84 | #define IWL_DL_POWER (1 << 8) |
85 | #define IWL_DL_TEMP (1<<9) | 85 | #define IWL_DL_TEMP (1 << 9) |
86 | 86 | ||
87 | #define IWL_DL_NOTIF (1<<10) | 87 | #define IWL_DL_NOTIF (1 << 10) |
88 | #define IWL_DL_SCAN (1<<11) | 88 | #define IWL_DL_SCAN (1 << 11) |
89 | #define IWL_DL_ASSOC (1<<12) | 89 | #define IWL_DL_ASSOC (1 << 12) |
90 | #define IWL_DL_DROP (1<<13) | 90 | #define IWL_DL_DROP (1 << 13) |
91 | 91 | ||
92 | #define IWL_DL_TXPOWER (1<<14) | 92 | #define IWL_DL_TXPOWER (1 << 14) |
93 | 93 | ||
94 | #define IWL_DL_AP (1<<15) | 94 | #define IWL_DL_AP (1 << 15) |
95 | 95 | ||
96 | #define IWL_DL_FW (1<<16) | 96 | #define IWL_DL_FW (1 << 16) |
97 | #define IWL_DL_RF_KILL (1<<17) | 97 | #define IWL_DL_RF_KILL (1 << 17) |
98 | #define IWL_DL_FW_ERRORS (1<<18) | 98 | #define IWL_DL_FW_ERRORS (1 << 18) |
99 | 99 | ||
100 | #define IWL_DL_LED (1<<19) | 100 | #define IWL_DL_LED (1 << 19) |
101 | 101 | ||
102 | #define IWL_DL_RATE (1<<20) | 102 | #define IWL_DL_RATE (1 << 20) |
103 | 103 | ||
104 | #define IWL_DL_CALIB (1<<21) | 104 | #define IWL_DL_CALIB (1 << 21) |
105 | #define IWL_DL_WEP (1<<22) | 105 | #define IWL_DL_WEP (1 << 22) |
106 | #define IWL_DL_TX (1<<23) | 106 | #define IWL_DL_TX (1 << 23) |
107 | #define IWL_DL_RX (1<<24) | 107 | #define IWL_DL_RX (1 << 24) |
108 | #define IWL_DL_ISR (1<<25) | 108 | #define IWL_DL_ISR (1 << 25) |
109 | #define IWL_DL_HT (1<<26) | 109 | #define IWL_DL_HT (1 << 26) |
110 | #define IWL_DL_IO (1<<27) | 110 | #define IWL_DL_IO (1 << 27) |
111 | #define IWL_DL_11H (1<<28) | 111 | #define IWL_DL_11H (1 << 28) |
112 | 112 | ||
113 | #define IWL_DL_STATS (1<<29) | 113 | #define IWL_DL_STATS (1 << 29) |
114 | #define IWL_DL_TX_REPLY (1<<30) | 114 | #define IWL_DL_TX_REPLY (1 << 30) |
115 | #define IWL_DL_QOS (1<<31) | 115 | #define IWL_DL_QOS (1 << 31) |
116 | 116 | ||
117 | #define IWL_ERROR(f, a...) printk(KERN_ERR DRV_NAME ": " f, ## a) | 117 | #define IWL_ERROR(f, a...) printk(KERN_ERR DRV_NAME ": " f, ## a) |
118 | #define IWL_WARNING(f, a...) printk(KERN_WARNING DRV_NAME ": " f, ## a) | 118 | #define IWL_WARNING(f, a...) printk(KERN_WARNING DRV_NAME ": " f, ## a) |