mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
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>
This commit is contained in:
parent
1c3631ff1f
commit
fb3fb20687
2 changed files with 16 additions and 13 deletions
|
@ -1,12 +1,13 @@
|
||||||
/*
|
/*
|
||||||
* edac_module.c
|
* edac_module.c
|
||||||
*
|
*
|
||||||
* (C) 2007 www.douglaskthompson.com
|
* (C) 2007 www.softwarebitmaker.com
|
||||||
|
*
|
||||||
* This file is licensed under the terms of the GNU General Public
|
* This file is licensed under the terms of the GNU General Public
|
||||||
* License version 2. This program is licensed "as is" without any
|
* License version 2. This program is licensed "as is" without any
|
||||||
* warranty of any kind, whether express or implied.
|
* warranty of any kind, whether express or implied.
|
||||||
*
|
*
|
||||||
* Author: Doug Thompson <norsk5@xmission.com>
|
* Author: Doug Thompson <dougthompson@xmission.com>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#include <linux/edac.h>
|
#include <linux/edac.h>
|
||||||
|
@ -14,7 +15,7 @@
|
||||||
#include "edac_core.h"
|
#include "edac_core.h"
|
||||||
#include "edac_module.h"
|
#include "edac_module.h"
|
||||||
|
|
||||||
#define EDAC_MC_VERSION "Ver: 2.0.5 " __DATE__
|
#define EDAC_VERSION "Ver: 2.1.0 " __DATE__
|
||||||
|
|
||||||
#ifdef CONFIG_EDAC_DEBUG
|
#ifdef CONFIG_EDAC_DEBUG
|
||||||
/* Values of 0 to 4 will generate output */
|
/* Values of 0 to 4 will generate output */
|
||||||
|
@ -141,7 +142,7 @@ static int __init edac_init(void)
|
||||||
{
|
{
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
|
||||||
edac_printk(KERN_INFO, EDAC_MC, EDAC_MC_VERSION "\n");
|
edac_printk(KERN_INFO, EDAC_MC, EDAC_VERSION "\n");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Harvest and clear any boot/initialization PCI parity errors
|
* Harvest and clear any boot/initialization PCI parity errors
|
||||||
|
|
|
@ -15,30 +15,32 @@
|
||||||
#include <asm/edac.h>
|
#include <asm/edac.h>
|
||||||
|
|
||||||
int edac_op_state = EDAC_OPSTATE_INVAL;
|
int edac_op_state = EDAC_OPSTATE_INVAL;
|
||||||
EXPORT_SYMBOL(edac_op_state);
|
EXPORT_SYMBOL_GPL(edac_op_state);
|
||||||
|
|
||||||
atomic_t edac_handlers = ATOMIC_INIT(0);
|
atomic_t edac_handlers = ATOMIC_INIT(0);
|
||||||
EXPORT_SYMBOL(edac_handlers);
|
EXPORT_SYMBOL_GPL(edac_handlers);
|
||||||
|
|
||||||
int edac_err_assert = 0;
|
int edac_err_assert = 0;
|
||||||
EXPORT_SYMBOL(edac_err_assert);
|
EXPORT_SYMBOL_GPL(edac_err_assert);
|
||||||
|
|
||||||
inline int edac_handler_set(void)
|
/*
|
||||||
|
* called to determine if there is an EDAC driver interested in
|
||||||
|
* knowing an event (such as NMI) occurred
|
||||||
|
*/
|
||||||
|
int edac_handler_set(void)
|
||||||
{
|
{
|
||||||
if (edac_op_state == EDAC_OPSTATE_POLL)
|
if (edac_op_state == EDAC_OPSTATE_POLL)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
return atomic_read(&edac_handlers);
|
return atomic_read(&edac_handlers);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(edac_handler_set);
|
||||||
EXPORT_SYMBOL(edac_handler_set);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* handler for NMI type of interrupts to assert error
|
* handler for NMI type of interrupts to assert error
|
||||||
*/
|
*/
|
||||||
inline void edac_atomic_assert_error(void)
|
void edac_atomic_assert_error(void)
|
||||||
{
|
{
|
||||||
edac_err_assert++;
|
edac_err_assert++;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(edac_atomic_assert_error);
|
||||||
EXPORT_SYMBOL(edac_atomic_assert_error);
|
|
||||||
|
|
Loading…
Reference in a new issue