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.shevche...@linux.intel.com>
---
 drivers/net/wireless/cisco/airo.c | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)

diff --git a/drivers/net/wireless/cisco/airo.c 
b/drivers/net/wireless/cisco/airo.c
index 17c40f0..d2353f6 100644
--- a/drivers/net/wireless/cisco/airo.c
+++ b/drivers/net/wireless/cisco/airo.c
@@ -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);
-- 
2.6.2

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to