From: Paul Cercueil <paul@crapouillou.net>
To: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: Vignesh Raghavendra <vigneshr@ti.com>,
Arnd Bergmann <arnd@arndb.de>,
Richard Weinberger <richard@nod.at>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Marek Vasut <marek.vasut@gmail.com>,
linux-mtd <linux-mtd@lists.infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
David Woodhouse <dwmw2@infradead.org>
Subject: Re: [PATCH] mtd: rawnand: ingenic: fix ingenic_ecc dependency
Date: Fri, 28 Jun 2019 21:53:08 +0200 [thread overview]
Message-ID: <1561751588.1914.0@crapouillou.net> (raw)
In-Reply-To: <20190627184047.6faa058a@xps13>
Le jeu. 27 juin 2019 à 18:40, Miquel Raynal
<miquel.raynal@bootlin.com> a écrit :
> Hi Paul,
>
> Miquel Raynal <miquel.raynal@bootlin.com> wrote on Mon, 17 Jun 2019
> 14:16:59 +0200:
>
>> Hello,
>>
>> Arnd Bergmann <arnd@arndb.de> wrote on Mon, 17 Jun 2019 14:12:48
>> +0200:
>>
>> > On Mon, Jun 17, 2019 at 1:24 PM Paul Cercueil
>> <paul@crapouillou.net> wrote:
>> >
>> > > I think there's a better way to fix it, only in Kconfig.
>> > >
>> > > * Add a bool symbol MTD_NAND_INGENIC_USE_HW_ECC
>> > > * Have the three ECC/BCH drivers select this symbol instead of
>> > > MTD_NAND_INGENIC_ECC
>> > > * Add the following to the MTD_NAND_JZ4780 config option:
>> > > "select MTD_NAND_INGENIC_ECC if MTD_NAND_INGENIC_USE_HW_ECC"
>> >
>> > I don't see much difference to my approach here, but if you want
>> > to submit that version with 'Reported-by: Arnd Bergmann
>> <arnd@arndb.de>',
>> > please do so.
>> >
>> > Yet another option would be to use Makefile code to link both
>> > files into one module, and remove the EXPORT_SYMBOL statements:
>> >
>> > obj-$(CONFIG_MTD_NAND_JZ4780) += jz4780_nand.o
>> > jz4780_nand-y += ingenic_nand.o
>> > jz4780_nand-$(CONFIG_MTD_NAND_INGENIC_ECC) += ingenic_ecc.o
>> >
>>
>> I personally have a preference for this one.
>
> Would you mind sending the above change? I forgot about it but I would
> like to queue it for the next release. Preferably the last version
> Arnd
> proposed.
It does change the module name from 'ingenic_nand' to 'jz4780_nand',
though.
That's not really ideal...
>
> Thanks,
> Miquèl
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
WARNING: multiple messages have this Message-ID (diff)
From: Paul Cercueil <paul@crapouillou.net>
To: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: Arnd Bergmann <arnd@arndb.de>,
David Woodhouse <dwmw2@infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
Marek Vasut <marek.vasut@gmail.com>,
Richard Weinberger <richard@nod.at>,
Vignesh Raghavendra <vigneshr@ti.com>,
linux-mtd <linux-mtd@lists.infradead.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] mtd: rawnand: ingenic: fix ingenic_ecc dependency
Date: Fri, 28 Jun 2019 21:53:08 +0200 [thread overview]
Message-ID: <1561751588.1914.0@crapouillou.net> (raw)
In-Reply-To: <20190627184047.6faa058a@xps13>
Le jeu. 27 juin 2019 à 18:40, Miquel Raynal
<miquel.raynal@bootlin.com> a écrit :
> Hi Paul,
>
> Miquel Raynal <miquel.raynal@bootlin.com> wrote on Mon, 17 Jun 2019
> 14:16:59 +0200:
>
>> Hello,
>>
>> Arnd Bergmann <arnd@arndb.de> wrote on Mon, 17 Jun 2019 14:12:48
>> +0200:
>>
>> > On Mon, Jun 17, 2019 at 1:24 PM Paul Cercueil
>> <paul@crapouillou.net> wrote:
>> >
>> > > I think there's a better way to fix it, only in Kconfig.
>> > >
>> > > * Add a bool symbol MTD_NAND_INGENIC_USE_HW_ECC
>> > > * Have the three ECC/BCH drivers select this symbol instead of
>> > > MTD_NAND_INGENIC_ECC
>> > > * Add the following to the MTD_NAND_JZ4780 config option:
>> > > "select MTD_NAND_INGENIC_ECC if MTD_NAND_INGENIC_USE_HW_ECC"
>> >
>> > I don't see much difference to my approach here, but if you want
>> > to submit that version with 'Reported-by: Arnd Bergmann
>> <arnd@arndb.de>',
>> > please do so.
>> >
>> > Yet another option would be to use Makefile code to link both
>> > files into one module, and remove the EXPORT_SYMBOL statements:
>> >
>> > obj-$(CONFIG_MTD_NAND_JZ4780) += jz4780_nand.o
>> > jz4780_nand-y += ingenic_nand.o
>> > jz4780_nand-$(CONFIG_MTD_NAND_INGENIC_ECC) += ingenic_ecc.o
>> >
>>
>> I personally have a preference for this one.
>
> Would you mind sending the above change? I forgot about it but I would
> like to queue it for the next release. Preferably the last version
> Arnd
> proposed.
It does change the module name from 'ingenic_nand' to 'jz4780_nand',
though.
That's not really ideal...
>
> Thanks,
> Miquèl
next prev parent reply other threads:[~2019-06-28 19:53 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-17 11:10 [PATCH] mtd: rawnand: ingenic: fix ingenic_ecc dependency Arnd Bergmann
2019-06-17 11:10 ` Arnd Bergmann
2019-06-17 11:24 ` Paul Cercueil
2019-06-17 11:24 ` Paul Cercueil
2019-06-17 12:12 ` Arnd Bergmann
2019-06-17 12:12 ` Arnd Bergmann
2019-06-17 12:16 ` Miquel Raynal
2019-06-17 12:16 ` Miquel Raynal
2019-06-27 16:40 ` Miquel Raynal
2019-06-27 16:40 ` Miquel Raynal
2019-06-28 19:53 ` Paul Cercueil [this message]
2019-06-28 19:53 ` Paul Cercueil
2019-07-01 15:01 ` Arnd Bergmann
2019-07-01 15:01 ` Arnd Bergmann
-- strict thread matches above, loose matches on Subject: below --
2019-06-29 1:22 [PATCH] mtd: rawnand: ingenic: Fix " Paul Cercueil
2019-06-29 1:22 ` Paul Cercueil
2019-07-01 12:28 ` Miquel Raynal
2019-07-01 12:28 ` Miquel Raynal
2019-07-01 12:34 ` Paul Cercueil
2019-07-01 12:34 ` Paul Cercueil
2019-07-05 21:00 ` Miquel Raynal
2019-07-05 21:00 ` Miquel Raynal
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=1561751588.1914.0@crapouillou.net \
--to=paul@crapouillou.net \
--cc=arnd@arndb.de \
--cc=computersforpeace@gmail.com \
--cc=dwmw2@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=marek.vasut@gmail.com \
--cc=miquel.raynal@bootlin.com \
--cc=richard@nod.at \
--cc=vigneshr@ti.com \
/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.