diff options
| author | Patrick Delaunay <[email protected]> | 2020-07-06 13:26:52 +0200 |
|---|---|---|
| committer | Heiko Schocher <[email protected]> | 2020-07-09 06:02:45 +0200 |
| commit | fb3388cd85c43e6b262d7ea3c897bed42ac3dff8 (patch) | |
| tree | 0b7cde08b7756c83cdda1b9b2837f37582b511ad /drivers | |
| parent | c203ba44f1df393c196646f64f894481dacea5e3 (diff) | |
i2c: stm32f7: add stm32mp15 compatible
Add a new compatible "st,stm32mp15-i2c" introduced in Linux kernel v5.8
Signed-off-by: Patrick Delaunay <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/i2c/stm32f7_i2c.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/stm32f7_i2c.c b/drivers/i2c/stm32f7_i2c.c index ada8f4095ed..593f713d6bb 100644 --- a/drivers/i2c/stm32f7_i2c.c +++ b/drivers/i2c/stm32f7_i2c.c @@ -873,6 +873,7 @@ static const struct dm_i2c_ops stm32_i2c_ops = { static const struct udevice_id stm32_i2c_of_match[] = { { .compatible = "st,stm32f7-i2c", .data = (ulong)&stm32f7_setup }, + { .compatible = "st,stm32mp15-i2c", .data = (ulong)&stm32f7_setup }, {} }; |
