summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/spi-nor/winbond.c
diff options
context:
space:
mode:
authorTudor Ambarus <tudor.ambarus@microchip.com>2021-11-06 12:29:15 +0200
committerTudor Ambarus <tudor.ambarus@microchip.com>2021-12-23 10:17:03 +0200
commit65b54ff67afab2754d61289ec59806d71c7dc0e8 (patch)
treede948d4641f9d0de0c76afe645ac72dad5e13267 /drivers/mtd/spi-nor/winbond.c
parente7ad9f59f746f07055c361bc3b32491448310b8f (diff)
downloadlinux-stable-65b54ff67afab2754d61289ec59806d71c7dc0e8.tar.gz
linux-stable-65b54ff67afab2754d61289ec59806d71c7dc0e8.tar.bz2
linux-stable-65b54ff67afab2754d61289ec59806d71c7dc0e8.zip
mtd: spi-nor: Constify part specific fixup hooks
Constify 'struct spi_nor_fixups' in order to respect flash_info structure declaration. Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com> Reviewed-by: Pratyush Yadav <p.yadav@ti.com> Link: https://lore.kernel.org/r/20211106102915.153552-1-tudor.ambarus@microchip.com
Diffstat (limited to 'drivers/mtd/spi-nor/winbond.c')
-rw-r--r--drivers/mtd/spi-nor/winbond.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/spi-nor/winbond.c b/drivers/mtd/spi-nor/winbond.c
index a7573df0a62d..675f32c136b3 100644
--- a/drivers/mtd/spi-nor/winbond.c
+++ b/drivers/mtd/spi-nor/winbond.c
@@ -28,7 +28,7 @@ w25q256_post_bfpt_fixups(struct spi_nor *nor,
return 0;
}
-static struct spi_nor_fixups w25q256_fixups = {
+static const struct spi_nor_fixups w25q256_fixups = {
.post_bfpt = w25q256_post_bfpt_fixups,
};