All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pinctrl: mediatek: mt8512: fix the wrong start address of ranges
@ 2020-08-07  9:32 Chunfeng Yun
  2020-08-20 12:39 ` Tom Rini
  2020-09-02  1:26 ` Mingming Lee
  0 siblings, 2 replies; 3+ messages in thread
From: Chunfeng Yun @ 2020-08-07  9:32 UTC (permalink / raw)
  To: u-boot

The start address of dout, pullen and pullsel ragnes are wrong,
so fix up them.

Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
---
 drivers/pinctrl/mediatek/pinctrl-mt8512.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8512.c b/drivers/pinctrl/mediatek/pinctrl-mt8512.c
index af43754..bf2a8dd9 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mt8512.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mt8512.c
@@ -31,15 +31,15 @@ static const struct mtk_pin_field_calc mt8512_pin_di_range[] = {
 };
 
 static const struct mtk_pin_field_calc mt8512_pin_do_range[] = {
-	PIN_FIELD(0, 115, 0x860, 0x10, 0, 1),
+	PIN_FIELD(0, 115, 0x0A0, 0x10, 0, 1),
 };
 
 static const struct mtk_pin_field_calc mt8512_pin_pullen_range[] = {
-	PIN_FIELD(0, 115, 0x900, 0x10, 0, 1),
+	PIN_FIELD(0, 115, 0x860, 0x10, 0, 1),
 };
 
 static const struct mtk_pin_field_calc mt8512_pin_pullsel_range[] = {
-	PIN_FIELD(0, 115, 0x0A0, 0x10, 0, 1),
+	PIN_FIELD(0, 115, 0x900, 0x10, 0, 1),
 };
 
 static const struct mtk_pin_field_calc mt8512_pin_ies_range[] = {
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] pinctrl: mediatek: mt8512: fix the wrong start address of ranges
  2020-08-07  9:32 [PATCH] pinctrl: mediatek: mt8512: fix the wrong start address of ranges Chunfeng Yun
@ 2020-08-20 12:39 ` Tom Rini
  2020-09-02  1:26 ` Mingming Lee
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2020-08-20 12:39 UTC (permalink / raw)
  To: u-boot

On Fri, Aug 07, 2020 at 05:32:03PM +0800, Chunfeng Yun wrote:

> The start address of dout, pullen and pullsel ragnes are wrong,
> so fix up them.
> 
> Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200820/840e4dcb/attachment.sig>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] pinctrl: mediatek: mt8512: fix the wrong start address of ranges
  2020-08-07  9:32 [PATCH] pinctrl: mediatek: mt8512: fix the wrong start address of ranges Chunfeng Yun
  2020-08-20 12:39 ` Tom Rini
@ 2020-09-02  1:26 ` Mingming Lee
  1 sibling, 0 replies; 3+ messages in thread
From: Mingming Lee @ 2020-09-02  1:26 UTC (permalink / raw)
  To: u-boot

On Fri, 2020-08-07 at 17:32 +0800, Chunfeng Yun wrote:
> The start address of dout, pullen and pullsel ragnes are wrong,
> so fix up them.
> 
> Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
> ---
>  drivers/pinctrl/mediatek/pinctrl-mt8512.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8512.c b/drivers/pinctrl/mediatek/pinctrl-mt8512.c
> index af43754..bf2a8dd9 100644
> --- a/drivers/pinctrl/mediatek/pinctrl-mt8512.c
> +++ b/drivers/pinctrl/mediatek/pinctrl-mt8512.c
> @@ -31,15 +31,15 @@ static const struct mtk_pin_field_calc mt8512_pin_di_range[] = {
>  };
>  
>  static const struct mtk_pin_field_calc mt8512_pin_do_range[] = {
> -	PIN_FIELD(0, 115, 0x860, 0x10, 0, 1),
> +	PIN_FIELD(0, 115, 0x0A0, 0x10, 0, 1),
>  };
>  
>  static const struct mtk_pin_field_calc mt8512_pin_pullen_range[] = {
> -	PIN_FIELD(0, 115, 0x900, 0x10, 0, 1),
> +	PIN_FIELD(0, 115, 0x860, 0x10, 0, 1),
>  };
>  
>  static const struct mtk_pin_field_calc mt8512_pin_pullsel_range[] = {
> -	PIN_FIELD(0, 115, 0x0A0, 0x10, 0, 1),
> +	PIN_FIELD(0, 115, 0x900, 0x10, 0, 1),
>  };
>  
>  static const struct mtk_pin_field_calc mt8512_pin_ies_range[] = {

Reviewed-by: Mingming Lee <mingming.lee@mediatek.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-09-02  1:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-07  9:32 [PATCH] pinctrl: mediatek: mt8512: fix the wrong start address of ranges Chunfeng Yun
2020-08-20 12:39 ` Tom Rini
2020-09-02  1:26 ` Mingming Lee

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.