Commit dd50a1c4 authored by Yogesh Gaur's avatar Yogesh Gaur Committed by Boris Brezillon
Browse files

mtd: spi-nor: fsl-quadspi: fix api naming typo _init_ahb_read



Fix api naming typo _init_ahb_read
fsl_qspi_init_abh_read --> fsl_qspi_init_ahb_read

Signed-off-by: default avatarYogesh Gaur <yogeshnarayan.gaur@nxp.com>
Acked-by: default avatarHan Xu <han.xu@nxp.com>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@bootlin.com>
parent 1f37033f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
}