diff options
author | Kever Yang | 2017-08-17 15:17:35 +0800 |
---|---|---|
committer | Philipp Tomsich | 2017-08-18 18:00:29 +0200 |
commit | a634236b8d571df7db35ae70bd9a0573fbbec8d2 (patch) | |
tree | ca6f00f63f69b86d357bf610a6f940e8ee4ddc45 /drivers/pinctrl | |
parent | a80b3b0378fdd700649124cb2f9cfe8c58390b73 (diff) |
rockchip: rk322x: pinctrl: using compatible name same with dts
The dts from kernel is using rk3228-pinctrl as compatible name,
need to sync with it to make the driver work.
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/rockchip/pinctrl_rk322x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pinctrl/rockchip/pinctrl_rk322x.c b/drivers/pinctrl/rockchip/pinctrl_rk322x.c index 7aaf4b5801a..d9f8614810b 100644 --- a/drivers/pinctrl/rockchip/pinctrl_rk322x.c +++ b/drivers/pinctrl/rockchip/pinctrl_rk322x.c @@ -279,12 +279,12 @@ static int rk322x_pinctrl_probe(struct udevice *dev) } static const struct udevice_id rk322x_pinctrl_ids[] = { - { .compatible = "rockchip,rk322x-pinctrl" }, + { .compatible = "rockchip,rk3228-pinctrl" }, { } }; -U_BOOT_DRIVER(pinctrl_rk322x) = { - .name = "pinctrl_rk322x", +U_BOOT_DRIVER(pinctrl_rk3228) = { + .name = "pinctrl_rk3228", .id = UCLASS_PINCTRL, .of_match = rk322x_pinctrl_ids, .priv_auto_alloc_size = sizeof(struct rk322x_pinctrl_priv), |