diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-01-05 15:19:31 +0100 |
---|---|---|
committer | Wolfram Sang <wsa@kernel.org> | 2022-02-15 10:04:53 +0100 |
commit | 4ebf4987c0918ec6a08ece8ee745af44af02dee0 (patch) | |
tree | af87089167bf6d8f190af79a8e13a7ea80ec44c1 /drivers/i2c/busses/Makefile | |
parent | i2c: i801: Add support for Intel Raptor Lake PCH-S (diff) | |
download | linux-4ebf4987c0918ec6a08ece8ee745af44af02dee0.tar.xz linux-4ebf4987c0918ec6a08ece8ee745af44af02dee0.zip |
i2c: Introduce common module to instantiate CCGx UCSI
Introduce a common module to provide an API to instantiate UCSI device
for Cypress CCGx Type-C controller. Individual bus drivers need to select
this one on demand.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c/busses/Makefile')
-rw-r--r-- | drivers/i2c/busses/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/i2c/busses/Makefile b/drivers/i2c/busses/Makefile index 752f47be3fc1..479f60e4ee3d 100644 --- a/drivers/i2c/busses/Makefile +++ b/drivers/i2c/busses/Makefile @@ -6,6 +6,9 @@ # ACPI drivers obj-$(CONFIG_I2C_SCMI) += i2c-scmi.o +# Auxiliary I2C/SMBus modules +obj-$(CONFIG_I2C_CCGX_UCSI) += i2c-ccgx-ucsi.o + # PC SMBus host controller drivers obj-$(CONFIG_I2C_ALI1535) += i2c-ali1535.o obj-$(CONFIG_I2C_ALI1563) += i2c-ali1563.o |