[U-Boot] [PATCH 1/2] dm: sunxi: Move Linksprite_pcDuino3_Nano to use DM for MMC, SATA

Move to the driver model for MMC and SATA, which means it implicitly uses CONFIG_BLK too.
Signed-off-by: Adam Sampson ats@offog.org ---
configs/Linksprite_pcDuino3_Nano_defconfig | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/configs/Linksprite_pcDuino3_Nano_defconfig b/configs/Linksprite_pcDuino3_Nano_defconfig index 2df6761455..d6c95d000c 100644 --- a/configs/Linksprite_pcDuino3_Nano_defconfig +++ b/configs/Linksprite_pcDuino3_Nano_defconfig @@ -15,9 +15,11 @@ CONFIG_SPL_I2C_SUPPORT=y # CONFIG_SPL_DOS_PARTITION is not set # CONFIG_SPL_EFI_PARTITION is not set CONFIG_SCSI_AHCI=y +CONFIG_DM_MMC=y CONFIG_ETH_DESIGNWARE=y CONFIG_RGMII=y CONFIG_SUN7I_GMAC=y CONFIG_SCSI=y +CONFIG_DM_SCSI=y CONFIG_USB_EHCI_HCD=y CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE=y

Move to the driver model for MMC and SATA, which means it implicitly uses CONFIG_BLK too.
Signed-off-by: Adam Sampson ats@offog.org ---
configs/Cubietruck_defconfig | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/configs/Cubietruck_defconfig b/configs/Cubietruck_defconfig index 601eb3ca0c..1b73bd7cc7 100644 --- a/configs/Cubietruck_defconfig +++ b/configs/Cubietruck_defconfig @@ -22,10 +22,12 @@ CONFIG_CMD_USB_MASS_STORAGE=y CONFIG_SCSI_AHCI=y CONFIG_DFU_RAM=y CONFIG_FASTBOOT_CMD_OEM_FORMAT=y +CONFIG_DM_MMC=y CONFIG_ETH_DESIGNWARE=y CONFIG_RGMII=y CONFIG_SUN7I_GMAC=y CONFIG_SCSI=y +CONFIG_DM_SCSI=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_MUSB_GADGET=y CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE=y

On Thu, Jun 28, 2018 at 12:20:40AM +0100, Adam Sampson wrote:
Move to the driver model for MMC and SATA, which means it implicitly uses CONFIG_BLK too.
Signed-off-by: Adam Sampson ats@offog.org
This should be done at the Kconfig level for all the boards, so that we switch every one at once instead of having to maintain a long trail of platforms not yet converted.
Thanks! Maxime
participants (2)
-
Adam Sampson
-
Maxime Ripard