From: Marc Kleine-Budde <mkl@pengutronix.de>
To: linux-mtd@lists.infradead.org
Cc: David Woodhouse <dwmw2@infradead.org>,
linux-arm-kernel@lists.infradead.org, dedekind1@gmail.com
Subject: Re: [PATCH] pxa32xx_nand: add support for partition table parsing
Date: Wed, 28 Apr 2010 17:22:00 +0200 [thread overview]
Message-ID: <4BD85298.1000304@pengutronix.de> (raw)
In-Reply-To: <1272057944-19380-1-git-send-email-mkl@pengutronix.de>
[-- Attachment #1: Type: text/plain, Size: 1792 bytes --]
Marc Kleine-Budde wrote:
> The pxa32xx_nand driver doesn't support partition tables from the
> command line. This patch adds support for it.
>
> Please review and consider to apply.
Can someone please have a look at this patch.
Cheers, Marc
>>From a2caa92b08351511ee60bd94bf735be5f3a6fb65 Mon Sep 17 00:00:00 2001
> From: Marc Kleine-Budde <mkl@pengutronix.de>
> Date: Fri, 23 Apr 2010 10:43:42 +0200
> Subject: [PATCH] pxa32xx_nand: add support for partition table parsing
>
> The pxa32xx_nand driver doesn't support partition tables from the
> command line. This patch adds support for it.
>
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> ---
> drivers/mtd/nand/pxa3xx_nand.c | 11 +++++++++++
> 1 files changed, 11 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/mtd/nand/pxa3xx_nand.c b/drivers/mtd/nand/pxa3xx_nand.c
> index 5d55152..e02fa4f 100644
> --- a/drivers/mtd/nand/pxa3xx_nand.c
> +++ b/drivers/mtd/nand/pxa3xx_nand.c
> @@ -1320,6 +1320,17 @@ static int pxa3xx_nand_probe(struct platform_device *pdev)
> goto fail_free_irq;
> }
>
> + if (mtd_has_cmdlinepart()) {
> + static const char *probes[] = { "cmdlinepart", NULL };
> + struct mtd_partition *parts;
> + int nr_parts;
> +
> + nr_parts = parse_mtd_partitions(mtd, probes, &parts, 0);
> +
> + if (nr_parts)
> + return add_mtd_partitions(mtd, parts, nr_parts);
> + }
> +
> return add_mtd_partitions(mtd, pdata->parts, pdata->nr_parts);
>
> fail_free_irq:
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 260 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: mkl@pengutronix.de (Marc Kleine-Budde)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] pxa32xx_nand: add support for partition table parsing
Date: Wed, 28 Apr 2010 17:22:00 +0200 [thread overview]
Message-ID: <4BD85298.1000304@pengutronix.de> (raw)
In-Reply-To: <1272057944-19380-1-git-send-email-mkl@pengutronix.de>
Marc Kleine-Budde wrote:
> The pxa32xx_nand driver doesn't support partition tables from the
> command line. This patch adds support for it.
>
> Please review and consider to apply.
Can someone please have a look at this patch.
Cheers, Marc
>>From a2caa92b08351511ee60bd94bf735be5f3a6fb65 Mon Sep 17 00:00:00 2001
> From: Marc Kleine-Budde <mkl@pengutronix.de>
> Date: Fri, 23 Apr 2010 10:43:42 +0200
> Subject: [PATCH] pxa32xx_nand: add support for partition table parsing
>
> The pxa32xx_nand driver doesn't support partition tables from the
> command line. This patch adds support for it.
>
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> ---
> drivers/mtd/nand/pxa3xx_nand.c | 11 +++++++++++
> 1 files changed, 11 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/mtd/nand/pxa3xx_nand.c b/drivers/mtd/nand/pxa3xx_nand.c
> index 5d55152..e02fa4f 100644
> --- a/drivers/mtd/nand/pxa3xx_nand.c
> +++ b/drivers/mtd/nand/pxa3xx_nand.c
> @@ -1320,6 +1320,17 @@ static int pxa3xx_nand_probe(struct platform_device *pdev)
> goto fail_free_irq;
> }
>
> + if (mtd_has_cmdlinepart()) {
> + static const char *probes[] = { "cmdlinepart", NULL };
> + struct mtd_partition *parts;
> + int nr_parts;
> +
> + nr_parts = parse_mtd_partitions(mtd, probes, &parts, 0);
> +
> + if (nr_parts)
> + return add_mtd_partitions(mtd, parts, nr_parts);
> + }
> +
> return add_mtd_partitions(mtd, pdata->parts, pdata->nr_parts);
>
> fail_free_irq:
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 260 bytes
Desc: OpenPGP digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20100428/fd228e2b/attachment.sig>
next prev parent reply other threads:[~2010-04-28 15:22 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-23 21:25 [PATCH] pxa32xx_nand: add support for partition table parsing Marc Kleine-Budde
2010-04-23 21:25 ` Marc Kleine-Budde
2010-04-28 15:22 ` Marc Kleine-Budde [this message]
2010-04-28 15:22 ` Marc Kleine-Budde
2010-04-29 5:47 ` Artem Bityutskiy
2010-04-29 5:47 ` Artem Bityutskiy
-- strict thread matches above, loose matches on Subject: below --
2010-04-23 8:43 Marc Kleine-Budde
2010-04-23 8:43 Marc Kleine-Budde
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4BD85298.1000304@pengutronix.de \
--to=mkl@pengutronix.de \
--cc=dedekind1@gmail.com \
--cc=dwmw2@infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mtd@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.