diff options
author | Sergei Shtylyov <sshtylyov@ru.mvista.com> | 2013-01-03 21:27:34 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-11 09:04:43 -0800 |
commit | dcba35ace5cc816fda36a69dbebc3a1565034146 (patch) | |
tree | 84fa395d695a7001729822bba4920a1deaac63b6 /drivers | |
parent | ae893a989ec393419adf53dc96fbef7d0abfb5ca (diff) | |
download | lwn-dcba35ace5cc816fda36a69dbebc3a1565034146.tar.gz lwn-dcba35ace5cc816fda36a69dbebc3a1565034146.zip |
mtd: davinci_nand: fix modular build with CONFIG_OF=y
commit 7a9c83888761a9a26049b439dc0b09e7ea8a854b upstream.
Commit cdeadd712f52b16a9285386d61ee26fd14eb4085 (mtd: nand: davinci: add OF
support for davinci nand controller) has never been really build tested with
the driver as a module. When the driver is built-in, the missing semicolon
after structure initializer is "compensated" by MODULE_DEVICE_TABLE() macro
being empty and so the initializer using the trailing semicolon on the next
line; when the driver is built as a module, compilation error ensues, and as
the 'davinci_all_defconfig' has the NAND driver modular, this error prevents
DaVinci family kernel from building...
Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/nand/davinci_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/davinci_nand.c b/drivers/mtd/nand/davinci_nand.c index 945047ad0952..92cacba98e0e 100644 --- a/drivers/mtd/nand/davinci_nand.c +++ b/drivers/mtd/nand/davinci_nand.c @@ -523,7 +523,7 @@ static struct nand_ecclayout hwecc4_2048 __initconst = { static const struct of_device_id davinci_nand_of_match[] = { {.compatible = "ti,davinci-nand", }, {}, -} +}; MODULE_DEVICE_TABLE(of, davinci_nand_of_match); static struct davinci_nand_pdata |