diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-12-16 09:46:57 -0500 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-12-26 12:15:15 -0500 |
commit | 77c722dde9975361051c5530475f8f92ed67a506 (patch) | |
tree | a2d4acd9f868a5d9fb5fcf96d7a7af488246e98c /drivers/mtd | |
parent | b96bf4c33d4860bf1584ad2f9ed3b783d79aada8 (diff) |
UBI: bugfix: dont oops with NULL module parameter
E.g., it oopsed in case of: modprobe ubi mtd = 0
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/ubi/build.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mtd/ubi/build.c b/drivers/mtd/ubi/build.c index 9b94427be145..b85ca186afc6 100644 --- a/drivers/mtd/ubi/build.c +++ b/drivers/mtd/ubi/build.c | |||
@@ -845,6 +845,9 @@ static int __init ubi_mtd_param_parse(const char *val, struct kernel_param *kp) | |||
845 | char *pbuf = &buf[0]; | 845 | char *pbuf = &buf[0]; |
846 | char *tokens[3] = {NULL, NULL, NULL}; | 846 | char *tokens[3] = {NULL, NULL, NULL}; |
847 | 847 | ||
848 | if (!val) | ||
849 | return -EINVAL; | ||
850 | |||
848 | if (mtd_devs == UBI_MAX_DEVICES) { | 851 | if (mtd_devs == UBI_MAX_DEVICES) { |
849 | printk("UBI error: too many parameters, max. is %d\n", | 852 | printk("UBI error: too many parameters, max. is %d\n", |
850 | UBI_MAX_DEVICES); | 853 | UBI_MAX_DEVICES); |