summaryrefslogtreecommitdiffstats
path: root/include/linux/mtd
diff options
context:
space:
mode:
authorMiquel Raynal2018-07-25 15:31:51 +0200
committerMiquel Raynal2018-07-31 09:46:14 +0200
commit2023f1fa216f30b1877d65be2057fbaf0bbd49b3 (patch)
tree5d53702f9da4b77d8cfdd36e0bfb2b88aed18ea8 /include/linux/mtd
parentmtd: rawnand: do not export nand_scan_[ident|tail]() anymore (diff)
downloadkernel-qcow2-linux-2023f1fa216f30b1877d65be2057fbaf0bbd49b3.tar.gz
kernel-qcow2-linux-2023f1fa216f30b1877d65be2057fbaf0bbd49b3.tar.xz
kernel-qcow2-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.h2
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);