Signed-off-by: Andy Shevchenko <[email protected]>
---
 drivers/staging/rtl8192su/r8192S_Efuse.c |   27 +++------------------------
 1 files changed, 3 insertions(+), 24 deletions(-)

diff --git a/drivers/staging/rtl8192su/r8192S_Efuse.c 
b/drivers/staging/rtl8192su/r8192S_Efuse.c
index 1e1d55e..c4bbe40 100644
--- a/drivers/staging/rtl8192su/r8192S_Efuse.c
+++ b/drivers/staging/rtl8192su/r8192S_Efuse.c
@@ -30,6 +30,7 @@
 #include "r8192S_Efuse.h"
 
 #include <linux/types.h>
+#include <linux/ctype.h>
 
 //typedef  int INT32;
 //
@@ -1828,26 +1829,6 @@ EFUSE_ProgramMap(struct net_device* dev, char* 
pFileName,u8      TableType)
 
 #endif
 
-//
-//     Description:
-//             Return TRUE if chTmp is represent for hex digit and
-//             FALSE otherwise.
-//
-//
-bool IsHexDigit(       char chTmp)
-{
-       if( (chTmp >= '0' && chTmp <= '9') ||
-               (chTmp >= 'a' && chTmp <= 'f') ||
-               (chTmp >= 'A' && chTmp <= 'F') )
-       {
-               return TRUE;
-       }
-       else
-       {
-               return FALSE;
-       }
-}
-
 /*-----------------------------------------------------------------------------
  * Function:   efuse_ParsingMap
  *
@@ -1893,10 +1874,8 @@ efuse_ParsingMap(char* szStr,u32* pu4bVal,u32* pu4bMove)
 
        // Check if szScan is now pointer to a character for hex digit,
        // if not, it means this is not a valid hex number.
-       if(!IsHexDigit(*szScan))
-       {
+       if (!isxdigit(*szScan))
                return FALSE;
-       }
 
        // Parse each digit.
        do
@@ -1905,7 +1884,7 @@ efuse_ParsingMap(char* szStr,u32* pu4bVal,u32* pu4bMove)
 
                szScan++;
                (*pu4bMove)++;
-       } while(IsHexDigit(*szScan));
+       } while (isxdigit(*szScan));
 
        return TRUE;
 
-- 
1.7.1.1

_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to