linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/2] nand: Kconfig: Allow MTD_NAND_GPMI_NAND to be built as module
@ 2012-07-28 22:30 Fabio Estevam
  2012-07-28 22:30 ` [PATCH 1/2] nand: nand_bbt: Export nand_update_bbt Fabio Estevam
  0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2012-07-28 22:30 UTC (permalink / raw)
  To: Artem.Bityutskiy
  Cc: Fabio Estevam, b32955, linux-mtd, marex.vasut, kernel, shawn.guo,
	dwmw2

From: Fabio Estevam <fabio.estevam@freescale.com>

Allow MTD_NAND_GPMI_NAND to be built as module.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 drivers/mtd/nand/Kconfig |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
index f4e81a7..533eee7 100644
--- a/drivers/mtd/nand/Kconfig
+++ b/drivers/mtd/nand/Kconfig
@@ -461,7 +461,7 @@ config MTD_NAND_NANDSIM
 	  MTD nand layer.
 
 config MTD_NAND_GPMI_NAND
-        bool "GPMI NAND Flash Controller driver"
+        tristate "GPMI NAND Flash Controller driver"
         depends on MTD_NAND && (SOC_IMX23 || SOC_IMX28 || SOC_IMX6Q)
         help
 	 Enables NAND Flash support for IMX23 or IMX28.
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 1/2] nand: nand_bbt: Export nand_update_bbt
  2012-07-28 22:30 [PATCH 2/2] nand: Kconfig: Allow MTD_NAND_GPMI_NAND to be built as module Fabio Estevam
@ 2012-07-28 22:30 ` Fabio Estevam
  2012-08-14 22:50   ` Fabio Estevam
  0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2012-07-28 22:30 UTC (permalink / raw)
  To: Artem.Bityutskiy
  Cc: Fabio Estevam, b32955, linux-mtd, marex.vasut, kernel, shawn.guo,
	dwmw2

From: Fabio Estevam <fabio.estevam@freescale.com>

When building MTD_NAND_GPMI_NAND as module, the following error shows up:

ERROR: "nand_update_bbt" [drivers/mtd/nand/gpmi-nand/gpmi_nand.ko] undefined!

Export nand_update_bbt to fix it.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 drivers/mtd/nand/nand_bbt.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/nand/nand_bbt.c b/drivers/mtd/nand/nand_bbt.c
index 2d1d2fa..f4b6417 100644
--- a/drivers/mtd/nand/nand_bbt.c
+++ b/drivers/mtd/nand/nand_bbt.c
@@ -1403,3 +1403,4 @@ int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
 
 EXPORT_SYMBOL(nand_scan_bbt);
 EXPORT_SYMBOL(nand_default_bbt);
+EXPORT_SYMBOL(nand_update_bbt);
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] nand: nand_bbt: Export nand_update_bbt
  2012-07-28 22:30 ` [PATCH 1/2] nand: nand_bbt: Export nand_update_bbt Fabio Estevam
@ 2012-08-14 22:50   ` Fabio Estevam
  2012-08-15 12:59     ` Artem Bityutskiy
  0 siblings, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2012-08-14 22:50 UTC (permalink / raw)
  To: Artem.Bityutskiy
  Cc: Fabio Estevam, b32955, linux-mtd, marex.vasut, kernel, shawn.guo,
	dwmw2

Artem,

On Sat, Jul 28, 2012 at 7:30 PM, Fabio Estevam <festevam@gmail.com> wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
>
> When building MTD_NAND_GPMI_NAND as module, the following error shows up:
>
> ERROR: "nand_update_bbt" [drivers/mtd/nand/gpmi-nand/gpmi_nand.ko] undefined!
>
> Export nand_update_bbt to fix it.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Any comments on this series, please?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] nand: nand_bbt: Export nand_update_bbt
  2012-08-14 22:50   ` Fabio Estevam
@ 2012-08-15 12:59     ` Artem Bityutskiy
  0 siblings, 0 replies; 4+ messages in thread
From: Artem Bityutskiy @ 2012-08-15 12:59 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: Fabio Estevam, b32955, linux-mtd, marex.vasut, kernel, shawn.guo,
	dwmw2

[-- Attachment #1: Type: text/plain, Size: 973 bytes --]

On Tue, 2012-08-14 at 19:50 -0300, Fabio Estevam wrote:
> Artem,
> 
> On Sat, Jul 28, 2012 at 7:30 PM, Fabio Estevam <festevam@gmail.com> wrote:
> > From: Fabio Estevam <fabio.estevam@freescale.com>
> >
> > When building MTD_NAND_GPMI_NAND as module, the following error shows up:
> >
> > ERROR: "nand_update_bbt" [drivers/mtd/nand/gpmi-nand/gpmi_nand.ko] undefined!
> >
> > Export nand_update_bbt to fix it.
> >
> > Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> 
> Any comments on this series, please?

If you need something to be merged upstream urgently, please, bug dwmw2
because I do not merge MTD stuff to Linus anyway. You guys can reach him
at the #mtd channel in OFTC faster than by e-mail.

Otherwise, I will come to this patch later. I have a lot of not
responded e-mails/patches in my mailbox, and I start looking at the
oldest first. So at some point I will reach this one as well.

-- 
Best Regards,
Artem Bityutskiy

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-08-15 12:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-28 22:30 [PATCH 2/2] nand: Kconfig: Allow MTD_NAND_GPMI_NAND to be built as module Fabio Estevam
2012-07-28 22:30 ` [PATCH 1/2] nand: nand_bbt: Export nand_update_bbt Fabio Estevam
2012-08-14 22:50   ` Fabio Estevam
2012-08-15 12:59     ` Artem Bityutskiy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).