Commit 02a7d83301d5b5dfed387b8d16ff2882f6a5d9ed

Authored by Heiko Stübner
Committed by Simon Glass
1 parent f4f57c58b5

rockchip: i2c: Add compatibles for Rockchip Cortex-A9 socs

The Cortex-A9 socs rk3066 and rk3188 share the IP but have their own
compatible values, so add them to make the i2c on these platforms accessible.

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Acked-by: Simon Glass <sjg@chromium.org>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

drivers/i2c/rk_i2c.c
... ... @@ -380,6 +380,8 @@
380 380 };
381 381  
382 382 static const struct udevice_id rockchip_i2c_ids[] = {
  383 + { .compatible = "rockchip,rk3066-i2c" },
  384 + { .compatible = "rockchip,rk3188-i2c" },
383 385 { .compatible = "rockchip,rk3288-i2c" },
384 386 { }
385 387 };