diff options
author | Tudor Ambarus <tudor.ambarus@microchip.com> | 2022-07-25 12:25:00 +0300 |
---|---|---|
committer | Tudor Ambarus <tudor.ambarus@microchip.com> | 2022-07-28 05:11:56 +0300 |
commit | aa5d980a144cd0bf717eb16609c29ff276f8bd47 (patch) | |
tree | 74d786d2068712974d2e3d633045f6c908fa7e9e /drivers/mtd | |
parent | c452d49849d48bd37ae97fc2bc92c6435707c35f (diff) | |
download | linux-aa5d980a144cd0bf717eb16609c29ff276f8bd47.tar.gz linux-aa5d980a144cd0bf717eb16609c29ff276f8bd47.tar.bz2 linux-aa5d980a144cd0bf717eb16609c29ff276f8bd47.zip |
mtd: spi-nor: core: Shrink the storage size of the flash_info's addr_nbytes
The maximum number of address bytes in SPI NOR is 4. Shrink the storage
size of the flash_info's addr_nbytes.
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
Reviewed-by: Michael Walle <michael@walle.cc>
Reviewed-by: Pratyush Yadav <p.yadav@ti.com>
Link: https://lore.kernel.org/r/20220725092505.446315-3-tudor.ambarus@microchip.com
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/spi-nor/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/spi-nor/core.h b/drivers/mtd/spi-nor/core.h index 14921a507b0f..19a692e27c92 100644 --- a/drivers/mtd/spi-nor/core.h +++ b/drivers/mtd/spi-nor/core.h @@ -487,7 +487,7 @@ struct flash_info { unsigned sector_size; u16 n_sectors; u16 page_size; - u16 addr_nbytes; + u8 addr_nbytes; bool parse_sfdp; u16 flags; |