[PATCH] arm: socfpga: soc64: Use UCLASS_MTD instead of UCLASS_MISC

From: Ley Foon Tan ley.foon.tan@intel.com
Commit 407b01b3b3f5 ("mtd: rawnand: denali_dt: use UCLASS_MTD instead of UCLASS_MISC") change to use UCLASS_MTD instead of UCLASS_MISC. Update spl_boot_device() to use UCLASS_MTD.
Signed-off-by: Ley Foon Tan ley.foon.tan@intel.com Signed-off-by: Jit Loon Lim jit.loon.lim@intel.com --- arch/arm/mach-socfpga/spl_soc64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-socfpga/spl_soc64.c b/arch/arm/mach-socfpga/spl_soc64.c index ea1acaf309..38f69aa957 100644 --- a/arch/arm/mach-socfpga/spl_soc64.c +++ b/arch/arm/mach-socfpga/spl_soc64.c @@ -62,7 +62,7 @@ u32 spl_boot_device(void) switch (device_get_uclass_id(dev)) { case UCLASS_SPI_FLASH: return BOOT_DEVICE_SPI; - case UCLASS_MISC: + case UCLASS_MTD: return BOOT_DEVICE_NAND; case UCLASS_MMC: return BOOT_DEVICE_MMC1;
participants (1)
-
Jit Loon Lim