diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2018-07-25 15:31:51 +0200 |
---|---|---|
committer | Miquel Raynal <miquel.raynal@bootlin.com> | 2018-07-31 09:46:14 +0200 |
commit | 2023f1fa216f30b1877d65be2057fbaf0bbd49b3 (patch) | |
tree | 5d53702f9da4b77d8cfdd36e0bfb2b88aed18ea8 /include/linux/mtd | |
parent | 98732da1a08ebb666983d469981a8b994e77d556 (diff) | |
download | linux-2023f1fa216f30b1877d65be2057fbaf0bbd49b3.tar.gz linux-2023f1fa216f30b1877d65be2057fbaf0bbd49b3.tar.bz2 linux-2023f1fa216f30b1877d65be2057fbaf0bbd49b3.zip |
mtd: rawnand: allocate model parameter dynamically
Thanks to the migration of all drivers to use nand_scan() and the
related nand_controller_ops, we can now allocate data during the
detection phase. Let's do it first for the NAND model parameter which
is allocated in nand_detect().
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Boris Brezillon <boris.brezillon@bootlin.com>
Diffstat (limited to 'include/linux/mtd')
-rw-r--r-- | include/linux/mtd/rawnand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mtd/rawnand.h b/include/linux/mtd/rawnand.h index 71571ed23a20..099fa166569a 100644 --- a/include/linux/mtd/rawnand.h +++ b/include/linux/mtd/rawnand.h @@ -476,7 +476,7 @@ struct onfi_params { */ struct nand_parameters { /* Generic parameters */ - char model[100]; + const char *model; bool supports_set_get_features; DECLARE_BITMAP(set_feature_list, ONFI_FEATURE_NUMBER); DECLARE_BITMAP(get_feature_list, ONFI_FEATURE_NUMBER); |