mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 09:30:52 +07:00
lib/bitmap.c: use hex_to_bin()
Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
1fa7e5473c
commit
66f1991bc2
@ -359,7 +359,6 @@ EXPORT_SYMBOL(bitmap_find_next_zero_area);
|
|||||||
|
|
||||||
#define CHUNKSZ 32
|
#define CHUNKSZ 32
|
||||||
#define nbits_to_hold_value(val) fls(val)
|
#define nbits_to_hold_value(val) fls(val)
|
||||||
#define unhex(c) (isdigit(c) ? (c - '0') : (toupper(c) - 'A' + 10))
|
|
||||||
#define BASEDEC 10 /* fancier cpuset lists input in decimal */
|
#define BASEDEC 10 /* fancier cpuset lists input in decimal */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -466,7 +465,7 @@ int __bitmap_parse(const char *buf, unsigned int buflen,
|
|||||||
if (chunk & ~((1UL << (CHUNKSZ - 4)) - 1))
|
if (chunk & ~((1UL << (CHUNKSZ - 4)) - 1))
|
||||||
return -EOVERFLOW;
|
return -EOVERFLOW;
|
||||||
|
|
||||||
chunk = (chunk << 4) | unhex(c);
|
chunk = (chunk << 4) | hex_to_bin(c);
|
||||||
ndigits++; totaldigits++;
|
ndigits++; totaldigits++;
|
||||||
}
|
}
|
||||||
if (ndigits == 0)
|
if (ndigits == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user