diff options
| author | Chris Morgan <[email protected]> | 2022-01-07 11:52:54 -0600 |
|---|---|---|
| committer | Andre Przywara <[email protected]> | 2022-01-30 01:03:37 +0000 |
| commit | eb31a4a141bf401f92426bd053a965022e47290d (patch) | |
| tree | a430c3681aa32a594f7fd25423d050ba4049ebb4 | |
| parent | 2753b07269c099844ccd4c21de5790e3f9b8bdbd (diff) | |
i2c: mvtwsi: Add compatible string for allwinner, sun4i-a10-i2c
This adds a compatible string for the Allwinner Sun4i-A10 I2C
controller. Without this, boards based on the R8 and A13 (at a
minimum) fail to boot.
Signed-off-by: Chris Morgan <[email protected]>
Acked-by: Akash Gajjar <[email protected]>
Signed-off-by: Andre Przywara <[email protected]>
| -rw-r--r-- | drivers/i2c/mvtwsi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/mvtwsi.c b/drivers/i2c/mvtwsi.c index bad4b1484fd..f48a4f25aae 100644 --- a/drivers/i2c/mvtwsi.c +++ b/drivers/i2c/mvtwsi.c @@ -900,6 +900,7 @@ static const struct dm_i2c_ops mvtwsi_i2c_ops = { static const struct udevice_id mvtwsi_i2c_ids[] = { { .compatible = "marvell,mv64xxx-i2c", }, { .compatible = "marvell,mv78230-i2c", }, + { .compatible = "allwinner,sun4i-a10-i2c", }, { .compatible = "allwinner,sun6i-a31-i2c", }, { /* sentinel */ } }; |
