Skip to content

Commit

Permalink
[S390] cio: remove custom implementation of hex_to_bin()
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Andy Shevchenko authored and Martin Schwidefsky committed Oct 25, 2010
1 parent ed3640b commit f277707
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions drivers/s390/cio/blacklist.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,15 @@ static int pure_hex(char **cp, unsigned int *val, int min_digit,
int max_digit, int max_val)
{
int diff;
unsigned int value;

diff = 0;
*val = 0;

while (isxdigit(**cp) && (diff <= max_digit)) {
while (diff <= max_digit) {
int value = hex_to_bin(**cp);

if (isdigit(**cp))
value = **cp - '0';
else
value = tolower(**cp) - 'a' + 10;
if (value < 0)
break;
*val = *val * 16 + value;
(*cp)++;
diff++;
Expand Down

0 comments on commit f277707

Please sign in to comment.