aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDoug Thompson <dougthompson@xmission.com>2007-07-19 04:50:30 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-19 13:04:57 -0400
commitfb3fb2068775a1363265edc00870aa5e2f0e3631 (patch)
tree0d17bb04f84500c99a5729a0121942da69925d2a /drivers
parent1c3631ff1f805cb72644fcde02b7c58950f21cd5 (diff)
drivers/edac: code tidying on export-gpl
Change EXPORT_SYMBOLs to EXPORT_SYMBOLS_GPL Tidy changes: blank lines, inline removal, add comment Signed-off-by: Doug Thompson <dougthompson@xmission.com> Cc: Greg KH <greg@kroah.com> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/edac/edac_module.c9
-rw-r--r--drivers/edac/edac_stub.c20
2 files changed, 16 insertions, 13 deletions
diff --git a/drivers/edac/edac_module.c b/drivers/edac/edac_module.c
index fc32bbb9405e..e0c4a4086055 100644
--- a/drivers/edac/edac_module.c
+++ b/drivers/edac/edac_module.c
@@ -1,12 +1,13 @@
1/* 1/*
2 * edac_module.c 2 * edac_module.c
3 * 3 *
4 * (C) 2007 www.douglaskthompson.com 4 * (C) 2007 www.softwarebitmaker.com
5 *
5 * This file is licensed under the terms of the GNU General Public 6 * This file is licensed under the terms of the GNU General Public
6 * License version 2. This program is licensed "as is" without any 7 * License version 2. This program is licensed "as is" without any
7 * warranty of any kind, whether express or implied. 8 * warranty of any kind, whether express or implied.
8 * 9 *
9 * Author: Doug Thompson <norsk5@xmission.com> 10 * Author: Doug Thompson <dougthompson@xmission.com>
10 * 11 *
11 */ 12 */
12#include <linux/edac.h> 13#include <linux/edac.h>
@@ -14,7 +15,7 @@
14#include "edac_core.h" 15#include "edac_core.h"
15#include "edac_module.h" 16#include "edac_module.h"
16 17
17#define EDAC_MC_VERSION "Ver: 2.0.5 " __DATE__ 18#define EDAC_VERSION "Ver: 2.1.0 " __DATE__
18 19
19#ifdef CONFIG_EDAC_DEBUG 20#ifdef CONFIG_EDAC_DEBUG
20/* Values of 0 to 4 will generate output */ 21/* Values of 0 to 4 will generate output */
@@ -141,7 +142,7 @@ static int __init edac_init(void)
141{ 142{
142 int err = 0; 143 int err = 0;
143 144
144 edac_printk(KERN_INFO, EDAC_MC, EDAC_MC_VERSION "\n"); 145 edac_printk(KERN_INFO, EDAC_MC, EDAC_VERSION "\n");
145 146
146 /* 147 /*
147 * Harvest and clear any boot/initialization PCI parity errors 148 * Harvest and clear any boot/initialization PCI parity errors
diff --git a/drivers/edac/edac_stub.c b/drivers/edac/edac_stub.c
index 77b98dd3cfa6..20b428aa155e 100644
--- a/drivers/edac/edac_stub.c
+++ b/drivers/edac/edac_stub.c
@@ -15,30 +15,32 @@
15#include <asm/edac.h> 15#include <asm/edac.h>
16 16
17int edac_op_state = EDAC_OPSTATE_INVAL; 17int edac_op_state = EDAC_OPSTATE_INVAL;
18EXPORT_SYMBOL(edac_op_state); 18EXPORT_SYMBOL_GPL(edac_op_state);
19 19
20atomic_t edac_handlers = ATOMIC_INIT(0); 20atomic_t edac_handlers = ATOMIC_INIT(0);
21EXPORT_SYMBOL(edac_handlers); 21EXPORT_SYMBOL_GPL(edac_handlers);
22 22
23int edac_err_assert = 0; 23int edac_err_assert = 0;
24EXPORT_SYMBOL(edac_err_assert); 24EXPORT_SYMBOL_GPL(edac_err_assert);
25 25
26inline int edac_handler_set(void) 26/*
27 * called to determine if there is an EDAC driver interested in
28 * knowing an event (such as NMI) occurred
29 */
30int edac_handler_set(void)
27{ 31{
28 if (edac_op_state == EDAC_OPSTATE_POLL) 32 if (edac_op_state == EDAC_OPSTATE_POLL)
29 return 0; 33 return 0;
30 34
31 return atomic_read(&edac_handlers); 35 return atomic_read(&edac_handlers);
32} 36}
33 37EXPORT_SYMBOL_GPL(edac_handler_set);
34EXPORT_SYMBOL(edac_handler_set);
35 38
36/* 39/*
37 * handler for NMI type of interrupts to assert error 40 * handler for NMI type of interrupts to assert error
38 */ 41 */
39inline void edac_atomic_assert_error(void) 42void edac_atomic_assert_error(void)
40{ 43{
41 edac_err_assert++; 44 edac_err_assert++;
42} 45}
43 46EXPORT_SYMBOL_GPL(edac_atomic_assert_error);
44EXPORT_SYMBOL(edac_atomic_assert_error);