diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2017-01-07 17:15:57 +0300 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2017-03-09 01:21:17 +0300 |
commit | 8cfb9ab68f90703d419870fce7ac21ac401399f2 (patch) | |
tree | 4bb50f82b6a4337c1056abcb2b89522d958dcc69 /drivers/mtd/nand/nand_ids.c | |
parent | 7bb427990ee36482afcae859b1883e5fa1244ef2 (diff) | |
download | linux-8cfb9ab68f90703d419870fce7ac21ac401399f2.tar.xz |
mtd: nand: Rename the nand_manufacturers struct
Drop the 's' at the end of nand_manufacturers since the struct is actually
describing a single manufacturer, not a manufacturer table.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Diffstat (limited to 'drivers/mtd/nand/nand_ids.c')
-rw-r--r-- | drivers/mtd/nand/nand_ids.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/nand_ids.c b/drivers/mtd/nand/nand_ids.c index 4a2f75b0c200..3f80cfcb5e37 100644 --- a/drivers/mtd/nand/nand_ids.c +++ b/drivers/mtd/nand/nand_ids.c @@ -169,7 +169,7 @@ struct nand_flash_dev nand_flash_ids[] = { }; /* Manufacturer IDs */ -struct nand_manufacturers nand_manuf_ids[] = { +struct nand_manufacturer nand_manuf_ids[] = { {NAND_MFR_TOSHIBA, "Toshiba"}, {NAND_MFR_ESMT, "ESMT"}, {NAND_MFR_SAMSUNG, "Samsung"}, |