diff options
author | Wei Yongjun <[email protected]> | 2016-08-10 13:44:27 +0000 |
---|---|---|
committer | Borislav Petkov <[email protected]> | 2016-08-10 18:37:06 +0200 |
commit | 9bcd919eb84224aee2a5ed4fa33ed80aabfe0343 (patch) | |
tree | 0329e1dab8b9a0c4b38d1859964cff9235da7d8b | |
parent | 03fc6ea97f02006ea4dbc1e9f1e8ccba6fe58656 (diff) |
EDAC, altera: Make a10_eccmgr_ic_ops static
Fix the following sparse warning:
drivers/edac/altera_edac.c:1649:23: warning:
symbol 'a10_eccmgr_ic_ops' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <[email protected]>
Reviewed-by: Thor Thayer <[email protected]>
Cc: linux-edac <[email protected]>
Cc: lkml <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Borislav Petkov <[email protected]>
-rw-r--r-- | drivers/edac/altera_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/altera_edac.c b/drivers/edac/altera_edac.c index efaf727be25a..c8147f1d9edd 100644 --- a/drivers/edac/altera_edac.c +++ b/drivers/edac/altera_edac.c @@ -1831,7 +1831,7 @@ static int a10_eccmgr_irqdomain_map(struct irq_domain *d, unsigned int irq, return 0; } -struct irq_domain_ops a10_eccmgr_ic_ops = { +static struct irq_domain_ops a10_eccmgr_ic_ops = { .map = a10_eccmgr_irqdomain_map, .xlate = irq_domain_xlate_twocell, }; |