Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d0c8df6e authored by Valentine Barshak's avatar Valentine Barshak Committed by Josh Boyer
Browse files

[POWERPC] 4xx: Use machine_device_initcall() for warp_nand



With a multiplatform kernel, once built we always have warp_setup_nand_flash()
called and NDFC probed, no matter what machine we actually run on. This
potentially can cause problems (such as kernel crash), since NDFC is probed at
a warp-predefined address.

Using machine_device_initcall() NAND devices are registered if we run on a warp only.

Signed-off-by: default avatarValentine Barshak <vbarshak@ru.mvista.com>
Signed-off-by: default avatarJosh Boyer <jwboyer@linux.vnet.ibm.com>
parent 9d7030be
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -11,6 +11,7 @@
#include <linux/mtd/partitions.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/nand.h>
#include <linux/mtd/nand.h>
#include <linux/mtd/ndfc.h>
#include <linux/mtd/ndfc.h>
#include <asm/machdep.h>


#ifdef CONFIG_MTD_NAND_NDFC
#ifdef CONFIG_MTD_NAND_NDFC


@@ -100,6 +101,6 @@ static int warp_setup_nand_flash(void)


	return 0;
	return 0;
}
}
device_initcall(warp_setup_nand_flash);
machine_device_initcall(warp, warp_setup_nand_flash);


#endif
#endif