diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2022-06-19 17:56:26 -0500 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-06-21 12:28:33 +0000 |
commit | 323ca33b204dea9469ea0f81bd2ebedfe61f2b7f (patch) | |
tree | 40c637a3482607f18136db34bc68c5cb7b90e973 /src/soc/amd/common | |
parent | e97eb8f94b6db2498036c9abae07184fd6fe81f2 (diff) |
soc/amd/*: Move selection of DRIVERS_I2C_DESIGNWARE to common block
All AMD SoCs which select SOC_AMD_COMMON_BLOCK_I2C also select
DRIVERS_I2C_DESIGNWARE, so make the pairing explicit by moving the
selection into SOC_AMD_COMMON_BLOCK_I2C. This will facilitating adding
the Designware I2C bus ops handler in a subsequent commit.
Change-Id: Ice30c8806766deb9a6ba617c3e633ab069af3b46
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65231
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'src/soc/amd/common')
-rw-r--r-- | src/soc/amd/common/block/i2c/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/i2c/Kconfig b/src/soc/amd/common/block/i2c/Kconfig index 8e8ff9b148..02f8bef8ee 100644 --- a/src/soc/amd/common/block/i2c/Kconfig +++ b/src/soc/amd/common/block/i2c/Kconfig @@ -1,5 +1,6 @@ config SOC_AMD_COMMON_BLOCK_I2C bool + select DRIVERS_I2C_DESIGNWARE help Select this option to add FCH I2C controller functions to the build. |