diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 22:35:30 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 23:41:52 +0400 |
commit | 64a6f9500d8e8a8e1b1adc2120e56cc88df5727f (patch) | |
tree | 19949f0c50538e08b7e434db7860bef02d8aa611 /drivers/mtd/nand/cafe_nand.c | |
parent | 64b33619a30ff18c1535ee779572ecffcc4711d2 (diff) | |
download | linux-64a6f9500d8e8a8e1b1adc2120e56cc88df5727f.tar.xz |
signedness: module_param_array nump argument
... should be unsigned int
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/mtd/nand/cafe_nand.c')
-rw-r--r-- | drivers/mtd/nand/cafe_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/cafe_nand.c b/drivers/mtd/nand/cafe_nand.c index e2832d0b9899..1e811715211a 100644 --- a/drivers/mtd/nand/cafe_nand.c +++ b/drivers/mtd/nand/cafe_nand.c @@ -80,7 +80,7 @@ module_param(regdebug, int, 0644); static int checkecc = 1; module_param(checkecc, int, 0644); -static int numtimings; +static unsigned int numtimings; static int timing[3]; module_param_array(timing, int, &numtimings, 0644); |