Re: [PATCH v2 5/6] drivers: rename more drivers to match compatible string

2020-07-26 Thread Simon Glass
On Wed, 22 Jul 2020 at 07:15, Walter Lozano  wrote:
>
> Continuing with the approach in commit  rename
> additional drivers to allow the OF_PLATDATA support.
>
> Signed-off-by: Walter Lozano 
> ---
>
> (no changes since v1)
>
>  drivers/pinctrl/nxp/pinctrl-imx6.c | 6 --
>  drivers/video/imx/mxc_ipuv3_fb.c   | 4 ++--
>  2 files changed, 6 insertions(+), 4 deletions(-)
>

Reviewed-by: Simon Glass 


[PATCH v2 5/6] drivers: rename more drivers to match compatible string

2020-07-22 Thread Walter Lozano
Continuing with the approach in commit  rename
additional drivers to allow the OF_PLATDATA support.

Signed-off-by: Walter Lozano 
---

(no changes since v1)

 drivers/pinctrl/nxp/pinctrl-imx6.c | 6 --
 drivers/video/imx/mxc_ipuv3_fb.c   | 4 ++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/pinctrl/nxp/pinctrl-imx6.c 
b/drivers/pinctrl/nxp/pinctrl-imx6.c
index aafa3057ad..84004e5921 100644
--- a/drivers/pinctrl/nxp/pinctrl-imx6.c
+++ b/drivers/pinctrl/nxp/pinctrl-imx6.c
@@ -41,8 +41,8 @@ static const struct udevice_id imx6_pinctrl_match[] = {
{ /* sentinel */ }
 };
 
-U_BOOT_DRIVER(imx6_pinctrl) = {
-   .name = "imx6-pinctrl",
+U_BOOT_DRIVER(fsl_imx6q_iomuxc) = {
+   .name = "fsl_imx6q_iomuxc",
.id = UCLASS_PINCTRL,
.of_match = of_match_ptr(imx6_pinctrl_match),
.probe = imx6_pinctrl_probe,
@@ -51,3 +51,5 @@ U_BOOT_DRIVER(imx6_pinctrl) = {
.ops = &imx_pinctrl_ops,
.flags = DM_FLAG_PRE_RELOC,
 };
+
+U_BOOT_DRIVER_ALIAS(fsl_imx6q_iomuxc, fsl_imx6dl_iomuxc)
diff --git a/drivers/video/imx/mxc_ipuv3_fb.c b/drivers/video/imx/mxc_ipuv3_fb.c
index 587d62f2d8..492bc3e829 100644
--- a/drivers/video/imx/mxc_ipuv3_fb.c
+++ b/drivers/video/imx/mxc_ipuv3_fb.c
@@ -660,8 +660,8 @@ static const struct udevice_id ipuv3_video_ids[] = {
{ }
 };
 
-U_BOOT_DRIVER(ipuv3_video) = {
-   .name   = "ipuv3_video",
+U_BOOT_DRIVER(fsl_imx6q_ipu) = {
+   .name   = "fsl_imx6q_ipu",
.id = UCLASS_VIDEO,
.of_match = ipuv3_video_ids,
.bind   = ipuv3_video_bind,
-- 
2.20.1