]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[MTD] NAND s3c2410: Add missing NULL pointer check
authorBen Dooks <ben@simtec.co.uk>
Wed, 6 Jul 2005 20:05:10 +0000 (21:05 +0100)
committerThomas Gleixner <tglx@mtd.linutronix.de>
Wed, 6 Jul 2005 20:26:05 +0000 (22:26 +0200)
Fix OOPs if there was no platform set information passed

Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
drivers/mtd/nand/s3c2410.c

index 630a9c0edf3147e4eafba84186379a57614f5283..891e3a1b91106fa761ccbf032c4d4f0854655601 100644 (file)
@@ -16,8 +16,9 @@
  *     02-May-2005  BJD  Fixed s3c2440 support
  *     02-May-2005  BJD  Reduced hwcontrol decode
  *     20-Jun-2005  BJD  Updated s3c2440 support, fixed timing bug
+ *     08-Jul-2005  BJD  Fix OOPS when no platform data supplied
  *
- * $Id: s3c2410.c,v 1.13 2005/06/20 11:48:21 bjd Exp $
+ * $Id: s3c2410.c,v 1.14 2005/07/06 20:05:06 bjd Exp $
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -232,7 +233,7 @@ static void s3c2410_nand_select_chip(struct mtd_info *mtd, int chip)
        if (chip == -1) {
                cur |= bit;
        } else {
-               if (chip > nmtd->set->nr_chips) {
+               if (nmtd->set != NULL && chip > nmtd->set->nr_chips) {
                        printk(KERN_ERR PFX "chip %d out of range\n", chip);
                        return;
                }