Skip to content

Commit

Permalink
wireless: airo: re-use mac_pton()
Browse files Browse the repository at this point in the history
mac_pton() converts 6-byte MAC / BSSID to binary format. Change an open coded
variant by the generic one.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
  • Loading branch information
Andy Shevchenko authored and Kalle Valo committed Nov 30, 2015
1 parent 7941c21 commit b31fa55
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions drivers/net/wireless/cisco/airo.c
Original file line number Diff line number Diff line change
Expand Up @@ -5137,21 +5137,9 @@ static void proc_APList_on_close( struct inode *inode, struct file *file ) {
memset(APList_rid, 0, sizeof(*APList_rid));
APList_rid->len = cpu_to_le16(sizeof(*APList_rid));

for( i = 0; i < 4 && data->writelen >= (i+1)*6*3; i++ ) {
int j;
for( j = 0; j < 6*3 && data->wbuffer[j+i*6*3]; j++ ) {
switch(j%3) {
case 0:
APList_rid->ap[i][j/3]=
hex_to_bin(data->wbuffer[j+i*6*3])<<4;
break;
case 1:
APList_rid->ap[i][j/3]|=
hex_to_bin(data->wbuffer[j+i*6*3]);
break;
}
}
}
for (i = 0; i < 4 && data->writelen >= (i + 1) * 6 * 3; i++)
mac_pton(data->wbuffer + i * 6 * 3, APList_rid->ap[i]);

disable_MAC(ai, 1);
writeAPListRid(ai, APList_rid, 1);
enable_MAC(ai, 1);
Expand Down

0 comments on commit b31fa55

Please sign in to comment.