diff options
author | Tobias Klauser <tklauser@nuerscht.ch> | 2005-09-13 01:25:49 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-13 08:22:33 -0700 |
commit | 82006d084109bb4118f1de0dc5855abe5ccae430 (patch) | |
tree | 78118bcee8d509aa9a5a833ce3a2e607be3ada88 /drivers/video | |
parent | 6f673d83ca3b7a6aeaacfd45d6ce466c33df8039 (diff) | |
download | op-kernel-dev-82006d084109bb4118f1de0dc5855abe5ccae430.zip op-kernel-dev-82006d084109bb4118f1de0dc5855abe5ccae430.tar.gz |
[PATCH] drivers/video: Replace custom macro with isdigit()
Replace the custom CHAR_IS_NUM() macro with isdigit() from <linux/ctype.h>
Signed-off-by: Tobias Klauser <tklauser@nuerscht.ch>
Acked-by: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/pm3fb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/pm3fb.c b/drivers/video/pm3fb.c index e0dad94..2e11b60 100644 --- a/drivers/video/pm3fb.c +++ b/drivers/video/pm3fb.c @@ -67,6 +67,7 @@ #include <linux/init.h> #include <linux/pci.h> #include <linux/ioport.h> +#include <linux/ctype.h> #include <video/fbcon.h> #include <video/fbcon-mfb.h> @@ -2594,7 +2595,7 @@ static char *pm3fb_boardnum_setup(char *options, unsigned long *bn) { char *next; - if (!(CHAR_IS_NUM(options[0]))) { + if (!(isdigit(options[0]))) { (*bn) = 0; return (options); } |