Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1654688
| From | Andrea Adami <andrea.adami@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v3 5/9] mtd: nand: tmio_nand.c: take in account partition parser types |
| Date | 2017-06-01 00:50 +0200 |
| Message-ID | <tNkBb-2ET-1@gated-at.bofh.it> (permalink) |
| References | <tNkBb-2ET-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Signed-off-by: Andrea Adami <andrea.adami@gmail.com> --- drivers/mtd/nand/tmio_nand.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/mtd/nand/tmio_nand.c b/drivers/mtd/nand/tmio_nand.c index fc5e773..bea05bb 100644 --- a/drivers/mtd/nand/tmio_nand.c +++ b/drivers/mtd/nand/tmio_nand.c @@ -440,7 +440,9 @@ static int tmio_probe(struct platform_device *dev) goto err_irq; /* Register the partitions */ - retval = mtd_device_parse_register(mtd, NULL, NULL, + retval = mtd_device_parse_register(mtd, + data->types ? data->types : NULL, + NULL, data ? data->partition : NULL, data ? data->num_partitions : 0); if (!retval) -- 2.7.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v3 5/9] mtd: nand: tmio_nand.c: take in account partition parser types Andrea Adami <andrea.adami@gmail.com> - 2017-06-01 00:50 +0200 Re: [PATCH v3 5/9] mtd: nand: tmio_nand.c: take in account partition parser types Wolfram Sang <wsa@the-dreams.de> - 2017-06-01 10:40 +0200
csiph-web