UPSTREAM: pinctrl: sunxi: Fix name for A100 R_PIO

The name of A100 R_PIO driver should be sun50i-a100-r-pinctrl,
not sun50iw10p1-r-pinctrl.

Bug: 254441685
Fixes: 473436e7647d6 ("pinctrl: sunxi: add support for the Allwinner A100 pin controller")
Signed-off-by: Michael Wu <michael@allwinnertech.com>
Acked-by: Samuel Holland <samuel@sholland.org>
Link: https://lore.kernel.org/r/20220819024541.74191-1-michael@allwinnertech.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
(cherry picked from commit 76648c867c6c03b8a468d9c9222025873ecc613d)
Signed-off-by: Lee Jones <joneslee@google.com>
Change-Id: I0499eb9db03b7b1c267c722b7f620e427d207850
This commit is contained in:
Michael Wu 2022-08-19 10:45:41 +08:00 committed by Lee Jones
parent b45868d624
commit c08e708d2b

View File

@ -98,7 +98,7 @@ MODULE_DEVICE_TABLE(of, a100_r_pinctrl_match);
static struct platform_driver a100_r_pinctrl_driver = {
.probe = a100_r_pinctrl_probe,
.driver = {
.name = "sun50iw10p1-r-pinctrl",
.name = "sun50i-a100-r-pinctrl",
.of_match_table = a100_r_pinctrl_match,
},
};