diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-10-29 10:01:41 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-12-15 08:54:51 -0200 |
commit | 6d8ef2472410c8ab004729a71ec829a224699a08 (patch) | |
tree | 1a4e9ea9a80d2baa95905d2e17bd95e8c50e4cb9 /drivers/edac/edac_device.c | |
parent | 0b892c717714334890ea179a2dc1941a223e446f (diff) | |
download | linux-stable-6d8ef2472410c8ab004729a71ec829a224699a08.tar.gz linux-stable-6d8ef2472410c8ab004729a71ec829a224699a08.tar.bz2 linux-stable-6d8ef2472410c8ab004729a71ec829a224699a08.zip |
edac: move EDAC device definitions to drivers/edac/edac_device.h
The edac_core.h header contain data structures and function
definitions for both EDAC MC and EDAC device.
Let's move the devices ones to a separate header file, as part
of a header reorganization.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/edac/edac_device.c')
-rw-r--r-- | drivers/edac/edac_device.c | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/drivers/edac/edac_device.c b/drivers/edac/edac_device.c index a97900333e2d..046ab7794fc2 100644 --- a/drivers/edac/edac_device.c +++ b/drivers/edac/edac_device.c @@ -12,23 +12,20 @@ * 19 Jan 2007 */ +#include <asm/page.h> +#include <asm/uaccess.h> +#include <linux/ctype.h> +#include <linux/highmem.h> +#include <linux/init.h> +#include <linux/jiffies.h> #include <linux/module.h> -#include <linux/types.h> +#include <linux/slab.h> #include <linux/smp.h> -#include <linux/init.h> +#include <linux/spinlock.h> #include <linux/sysctl.h> -#include <linux/highmem.h> #include <linux/timer.h> -#include <linux/slab.h> -#include <linux/jiffies.h> -#include <linux/spinlock.h> -#include <linux/list.h> -#include <linux/ctype.h> -#include <linux/workqueue.h> -#include <asm/uaccess.h> -#include <asm/page.h> -#include "edac_core.h" +#include "edac_device.h" #include "edac_module.h" /* lock for the list: 'edac_device_list', manipulation of this list |