diff options
author | Michael Walle <michael@walle.cc> | 2020-09-14 23:43:31 +0200 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2020-09-17 15:57:26 +0100 |
commit | a538ad229bbee4f8c68204c75b2e1ae43db875d6 (patch) | |
tree | 4f9fc5157e8e4bab493b64e080a449bed70efa7e /drivers/mfd/simple-mfd-i2c.c | |
parent | 48e28a249e3bcc31e6a2d27267410a6f5a03e39e (diff) | |
download | linux-a538ad229bbee4f8c68204c75b2e1ae43db875d6.tar.bz2 |
mfd: simple-mfd-i2c: Add sl28cpld support
Add the core support for the board management controller found on the
SMARC-sAL28 board.
Also add a virtual symbol which pulls in the simple-mfd-i2c driver and
provide a common symbol on which the subdevice drivers can depend on.
At the moment, this controller is used on the Kontron SMARC-sAL28 board.
Signed-off-by: Michael Walle <michael@walle.cc>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/simple-mfd-i2c.c')
-rw-r--r-- | drivers/mfd/simple-mfd-i2c.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/simple-mfd-i2c.c b/drivers/mfd/simple-mfd-i2c.c index 28e96a246be1..87f684cff9a1 100644 --- a/drivers/mfd/simple-mfd-i2c.c +++ b/drivers/mfd/simple-mfd-i2c.c @@ -38,6 +38,7 @@ static int simple_mfd_i2c_probe(struct i2c_client *i2c) } static const struct of_device_id simple_mfd_i2c_of_match[] = { + { .compatible = "kontron,sl28cpld" }, {} }; MODULE_DEVICE_TABLE(of, simple_mfd_i2c_of_match); |