[PATCH v2 20/35] mtd: spi-nor: core: Use container_of to get the pointer to struct spi_nor
Pratyush Yadav
p.yadav at ti.com
Tue Aug 17 05:23:37 PDT 2021
On 27/07/21 07:52AM, Tudor Ambarus wrote:
> Get the pointer to the containing struct spi_nor by using container_of.
Please add an explanation on _why_ you are doing this. I suspect it
would be something boring like "because mtd is embedded in nor, no need
to use mtd->priv", but good to have it here regardless.
>
> Signed-off-by: Tudor Ambarus <tudor.ambarus at microchip.com>
> ---
> drivers/mtd/spi-nor/core.c | 1 -
> drivers/mtd/spi-nor/core.h | 2 +-
> 2 files changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c
> index 9885d434ea83..5c8cffb5e6f2 100644
> --- a/drivers/mtd/spi-nor/core.c
> +++ b/drivers/mtd/spi-nor/core.c
> @@ -3175,7 +3175,6 @@ int spi_nor_scan(struct spi_nor *nor, const char *name,
>
> if (!mtd->name)
> mtd->name = dev_name(dev);
> - mtd->priv = nor;
> mtd->type = MTD_NORFLASH;
> mtd->writesize = nor->params->writesize;
> mtd->flags = MTD_CAP_NORFLASH;
> diff --git a/drivers/mtd/spi-nor/core.h b/drivers/mtd/spi-nor/core.h
> index 987797a789c8..8fddc685d2d3 100644
> --- a/drivers/mtd/spi-nor/core.h
> +++ b/drivers/mtd/spi-nor/core.h
> @@ -557,7 +557,7 @@ void spi_nor_otp_init(struct spi_nor *nor);
>
> static struct spi_nor __maybe_unused *mtd_to_spi_nor(struct mtd_info *mtd)
> {
> - return mtd->priv;
> + return container_of(mtd, struct spi_nor, mtd);
> }
>
> static inline void snor_f_4b_opcodes(struct spi_nor *nor)
> --
> 2.25.1
>
--
Regards,
Pratyush Yadav
Texas Instruments Inc.
More information about the linux-mtd
mailing list