diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2010-01-29 15:58:23 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2010-02-25 06:39:09 -0500 |
commit | 24c15496771ea1f3902dee23f746042ba34dc2b8 (patch) | |
tree | b9bfd802eff8e6d7405c8714a96a7661c3fa1008 /drivers/mtd/mtdoops.c | |
parent | e99e90aef17517d99be8e049b2f5cc563cd6862a (diff) |
mtd: Remove unnecessary comparisons with MAX_MTD_DEVICES
MAX_MTD_DEVICES is about to be removed.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/mtdoops.c')
-rw-r--r-- | drivers/mtd/mtdoops.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c index 92e12df0917f..328313c3dccb 100644 --- a/drivers/mtd/mtdoops.c +++ b/drivers/mtd/mtdoops.c | |||
@@ -429,11 +429,6 @@ static int __init mtdoops_init(void) | |||
429 | mtd_index = simple_strtoul(mtddev, &endp, 0); | 429 | mtd_index = simple_strtoul(mtddev, &endp, 0); |
430 | if (*endp == '\0') | 430 | if (*endp == '\0') |
431 | cxt->mtd_index = mtd_index; | 431 | cxt->mtd_index = mtd_index; |
432 | if (cxt->mtd_index > MAX_MTD_DEVICES) { | ||
433 | printk(KERN_ERR "mtdoops: invalid mtd device number (%u) given\n", | ||
434 | mtd_index); | ||
435 | return -EINVAL; | ||
436 | } | ||
437 | 432 | ||
438 | cxt->oops_buf = vmalloc(record_size); | 433 | cxt->oops_buf = vmalloc(record_size); |
439 | if (!cxt->oops_buf) { | 434 | if (!cxt->oops_buf) { |