Commit 733daa52 authored by G, Manjunath Kondaiah's avatar G, Manjunath Kondaiah Committed by David Woodhouse

mtd: omap2: fix static declaration warning

This patch fixes sparse warning for static declaration of variable "use_dma"

drivers/mtd/nand/omap2.c:114:11: warning: symbol 'use_dma' was not declared. Should it be static?
Signed-off-by: default avatarG, Manjunath Kondaiah <manjugk@ti.com>
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 65e5a0e1
...@@ -111,11 +111,11 @@ static int use_dma = 1; ...@@ -111,11 +111,11 @@ static int use_dma = 1;
module_param(use_dma, bool, 0); module_param(use_dma, bool, 0);
MODULE_PARM_DESC(use_dma, "enable/disable use of DMA"); MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
#else #else
const int use_dma; static const int use_dma;
#endif #endif
#else #else
const int use_prefetch; const int use_prefetch;
const int use_dma; static const int use_dma;
#endif #endif
struct omap_nand_info { struct omap_nand_info {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment