public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] mtd: fsl-quadspi: fix api naming typo _init_ahb_read
@ 2018-01-02 10:39 Yogesh Gaur
  2018-01-18 17:21 ` Han Xu
  2018-05-18 20:02 ` Boris Brezillon
  0 siblings, 2 replies; 3+ messages in thread
From: Yogesh Gaur @ 2018-01-02 10:39 UTC (permalink / raw)
  To: linux-mtd
  Cc: boris.brezillon, cyrille.pitchen, computersforpeace,
	prabhakar.kushwaha, suresh.gupta, Yogesh Gaur

Fix api naming typo _init_ahb_read
fsl_qspi_init_abh_read --> fsl_qspi_init_ahb_read

Signed-off-by: Yogesh Gaur <yogeshnarayan.gaur@nxp.com>
---
 drivers/mtd/spi-nor/fsl-quadspi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/spi-nor/fsl-quadspi.c b/drivers/mtd/spi-nor/fsl-quadspi.c
index f17d224..943e9c4 100644
--- a/drivers/mtd/spi-nor/fsl-quadspi.c
+++ b/drivers/mtd/spi-nor/fsl-quadspi.c
@@ -661,7 +661,7 @@ static void fsl_qspi_set_map_addr(struct fsl_qspi *q)
  * causes the controller to clear the buffer, and use the sequence pointed
  * by the QUADSPI_BFGENCR[SEQID] to initiate a read from the flash.
  */
-static void fsl_qspi_init_abh_read(struct fsl_qspi *q)
+static void fsl_qspi_init_ahb_read(struct fsl_qspi *q)
 {
 	void __iomem *base = q->iobase;
 	int seqid;
@@ -795,7 +795,7 @@ static int fsl_qspi_nor_setup_last(struct fsl_qspi *q)
 	fsl_qspi_init_lut(q);
 
 	/* Init for AHB read */
-	fsl_qspi_init_abh_read(q);
+	fsl_qspi_init_ahb_read(q);
 
 	return 0;
 }
-- 
1.9.1

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

* Re: [PATCH] mtd: fsl-quadspi: fix api naming typo _init_ahb_read
  2018-01-02 10:39 [PATCH] mtd: fsl-quadspi: fix api naming typo _init_ahb_read Yogesh Gaur
@ 2018-01-18 17:21 ` Han Xu
  2018-05-18 20:02 ` Boris Brezillon
  1 sibling, 0 replies; 3+ messages in thread
From: Han Xu @ 2018-01-18 17:21 UTC (permalink / raw)
  To: Yogesh Gaur
  Cc: linux-mtd, Boris Brezillon, prabhakar.kushwaha, suresh.gupta,
	cyrille.pitchen, Brian Norris

On Tue, Jan 2, 2018 at 4:39 AM, Yogesh Gaur <yogeshnarayan.gaur@nxp.com> wrote:
> Fix api naming typo _init_ahb_read
> fsl_qspi_init_abh_read --> fsl_qspi_init_ahb_read
>
> Signed-off-by: Yogesh Gaur <yogeshnarayan.gaur@nxp.com>
> ---
>  drivers/mtd/spi-nor/fsl-quadspi.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mtd/spi-nor/fsl-quadspi.c b/drivers/mtd/spi-nor/fsl-quadspi.c
> index f17d224..943e9c4 100644
> --- a/drivers/mtd/spi-nor/fsl-quadspi.c
> +++ b/drivers/mtd/spi-nor/fsl-quadspi.c
> @@ -661,7 +661,7 @@ static void fsl_qspi_set_map_addr(struct fsl_qspi *q)
>   * causes the controller to clear the buffer, and use the sequence pointed
>   * by the QUADSPI_BFGENCR[SEQID] to initiate a read from the flash.
>   */
> -static void fsl_qspi_init_abh_read(struct fsl_qspi *q)
> +static void fsl_qspi_init_ahb_read(struct fsl_qspi *q)
>  {
>         void __iomem *base = q->iobase;
>         int seqid;
> @@ -795,7 +795,7 @@ static int fsl_qspi_nor_setup_last(struct fsl_qspi *q)
>         fsl_qspi_init_lut(q);
>
>         /* Init for AHB read */
> -       fsl_qspi_init_abh_read(q);
> +       fsl_qspi_init_ahb_read(q);
>
>         return 0;
>  }
> --
> 1.9.1
>
>
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/

Acked-by: Han Xu <han.xu@nxp.com>

-- 
Sincerely,

Han XU

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

* Re: [PATCH] mtd: fsl-quadspi: fix api naming typo _init_ahb_read
  2018-01-02 10:39 [PATCH] mtd: fsl-quadspi: fix api naming typo _init_ahb_read Yogesh Gaur
  2018-01-18 17:21 ` Han Xu
@ 2018-05-18 20:02 ` Boris Brezillon
  1 sibling, 0 replies; 3+ messages in thread
From: Boris Brezillon @ 2018-05-18 20:02 UTC (permalink / raw)
  To: Yogesh Gaur
  Cc: linux-mtd, boris.brezillon, prabhakar.kushwaha, suresh.gupta,
	cyrille.pitchen, computersforpeace

On Tue, 2 Jan 2018 16:09:12 +0530
Yogesh Gaur <yogeshnarayan.gaur@nxp.com> wrote:

> Fix api naming typo _init_ahb_read
> fsl_qspi_init_abh_read --> fsl_qspi_init_ahb_read
> 
> Signed-off-by: Yogesh Gaur <yogeshnarayan.gaur@nxp.com>

Queued to spi-nor/next.

Thanks,

Boris

> ---
>  drivers/mtd/spi-nor/fsl-quadspi.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/mtd/spi-nor/fsl-quadspi.c b/drivers/mtd/spi-nor/fsl-quadspi.c
> index f17d224..943e9c4 100644
> --- a/drivers/mtd/spi-nor/fsl-quadspi.c
> +++ b/drivers/mtd/spi-nor/fsl-quadspi.c
> @@ -661,7 +661,7 @@ static void fsl_qspi_set_map_addr(struct fsl_qspi *q)
>   * causes the controller to clear the buffer, and use the sequence pointed
>   * by the QUADSPI_BFGENCR[SEQID] to initiate a read from the flash.
>   */
> -static void fsl_qspi_init_abh_read(struct fsl_qspi *q)
> +static void fsl_qspi_init_ahb_read(struct fsl_qspi *q)
>  {
>  	void __iomem *base = q->iobase;
>  	int seqid;
> @@ -795,7 +795,7 @@ static int fsl_qspi_nor_setup_last(struct fsl_qspi *q)
>  	fsl_qspi_init_lut(q);
>  
>  	/* Init for AHB read */
> -	fsl_qspi_init_abh_read(q);
> +	fsl_qspi_init_ahb_read(q);
>  
>  	return 0;
>  }



-- 
Boris Brezillon, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2018-05-18 20:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-02 10:39 [PATCH] mtd: fsl-quadspi: fix api naming typo _init_ahb_read Yogesh Gaur
2018-01-18 17:21 ` Han Xu
2018-05-18 20:02 ` Boris Brezillon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox