Tobias Klauser writes: > Replace the custom is_digit() macro with isdigit() from <linux/ctype.h> NAK. No point pulling in 256 bytes of _ctype array when all we use it for is two '0' <= c <= '9' comparisons. In fact Tom Rini maintains this code, so it's his opinion that counts. Paul.