diff options
author | Vincent Knecht <vincent.knecht@mailoo.org> | 2022-07-12 12:08:29 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2022-08-02 16:43:30 +0200 |
commit | dc6d28f4859d1fcbd2f5505862a768f07c7a9770 (patch) | |
tree | a99934ed851dc13013b826ae7133c4d7f7bf6c24 /drivers | |
parent | e625e2238a270df743cbc623b3abad8d0010abc9 (diff) | |
download | linux-stable-dc6d28f4859d1fcbd2f5505862a768f07c7a9770.tar.gz linux-stable-dc6d28f4859d1fcbd2f5505862a768f07c7a9770.tar.bz2 linux-stable-dc6d28f4859d1fcbd2f5505862a768f07c7a9770.zip |
leds: is31fl319x: Add missing si-en compatibles
Add si-en compatibles for all chip variants.
Signed-off-by: Vincent Knecht <vincent.knecht@mailoo.org>
Signed-off-by: Pavel Machek <pavel@ucw.cz>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/leds/leds-is31fl319x.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/leds/leds-is31fl319x.c b/drivers/leds/leds-is31fl319x.c index 4161b9dd7e48..0db5d4988131 100644 --- a/drivers/leds/leds-is31fl319x.c +++ b/drivers/leds/leds-is31fl319x.c @@ -102,6 +102,10 @@ static const struct of_device_id of_is31fl319x_match[] = { { .compatible = "issi,is31fl3193", .data = &is31fl3193_cdef, }, { .compatible = "issi,is31fl3196", .data = &is31fl3196_cdef, }, { .compatible = "issi,is31fl3199", .data = &is31fl3199_cdef, }, + { .compatible = "si-en,sn3190", .data = &is31fl3190_cdef, }, + { .compatible = "si-en,sn3191", .data = &is31fl3190_cdef, }, + { .compatible = "si-en,sn3193", .data = &is31fl3193_cdef, }, + { .compatible = "si-en,sn3196", .data = &is31fl3196_cdef, }, { .compatible = "si-en,sn3199", .data = &is31fl3199_cdef, }, { } }; @@ -432,6 +436,10 @@ static const struct i2c_device_id is31fl319x_id[] = { { "is31fl3193" }, { "is31fl3196" }, { "is31fl3199" }, + { "sn3190" }, + { "sn3191" }, + { "sn3193" }, + { "sn3196" }, { "sn3199" }, {}, }; |