/spare/repo/netdev-2.6 branch 'ieee80211'

This commit is contained in:
Jeff Garzik
2005-07-30 18:14:50 -04:00
1262 changed files with 121679 additions and 45045 deletions

View File

@@ -5020,7 +5020,7 @@ static void proc_SSID_on_close( struct inode *inode, struct file *file ) {
enable_MAC(ai, &rsp, 1);
}
inline static u8 hexVal(char c) {
static inline u8 hexVal(char c) {
if (c>='0' && c<='9') return c -= '0';
if (c>='a' && c<='f') return c -= 'a'-10;
if (c>='A' && c<='F') return c -= 'A'-10;