diff options
author | Alifer Moraes <alifer.wsdm@gmail.com> | 2020-01-20 13:31:02 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-02-09 15:05:10 +0100 |
commit | 2f2fdbe3f482cab28bac27d18a1197bb9654e647 (patch) | |
tree | 4e8bdb36094641abe05624d26b3d04b23c6b6d6a /configs/mx6sabresd_defconfig | |
parent | 70a2df36fe3b2fd2ef82de4f244a43fc1ff879f6 (diff) | |
download | u-boot-2f2fdbe3f482cab28bac27d18a1197bb9654e647.tar.gz |
mx6sabresd: Convert PCI to driver model
Convert imx6sabresd PCI to driver model to fix the following warning:
===================== WARNING ======================
This board does not use CONFIG_DM_PCI Please update
the board to use CONFIG_DM_PCI before the v2019.07 release.
Failure to update by the deadline may result in board removal.
See doc/driver-model/MIGRATION.txt for more info.
====================================================
After the conversion the following commands were used for testing:
=> pci enum
PCI: Failed autoconfig bar 10
PCI: Failed autoconfig bar 10
=> pci 1
Scanning PCI devices on bus 1
BusDevFun VendorId DeviceId Device Class Sub-Class
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Diffstat (limited to 'configs/mx6sabresd_defconfig')
-rw-r--r-- | configs/mx6sabresd_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/mx6sabresd_defconfig b/configs/mx6sabresd_defconfig index c6cd1e3cb1..8629554fba 100644 --- a/configs/mx6sabresd_defconfig +++ b/configs/mx6sabresd_defconfig @@ -83,6 +83,7 @@ CONFIG_SPI_FLASH_STMICRO=y CONFIG_PHYLIB=y CONFIG_MII=y CONFIG_PCI=y +CONFIG_DM_PCI=y CONFIG_PINCTRL=y CONFIG_PINCTRL_IMX6=y CONFIG_DM_REGULATOR=y |