[PATCH v2 20/35] mtd: spi-nor: core: Use container_of to get the pointer to struct spi_nor
Tudor.Ambarus at microchip.com
Tudor.Ambarus at microchip.com
Fri Oct 22 01:00:00 PDT 2021
On 7/27/21 10:08 AM, Rasmus Villemoes wrote:
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
>
> On 27/07/2021 06.52, Tudor Ambarus wrote:
>> Get the pointer to the containing struct spi_nor by using container_of.
>>
>> 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)
>> {
>
> Somewhat unrelated, but while you're here, why not get rid of that
> __maybe_unused and make this an ordinary "static inline"?
>
Will do. Thanks.
More information about the linux-mtd
mailing list