diff options
author | Andrew Morton <akpm@osdl.org> | 2005-11-28 13:43:47 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-28 14:42:23 -0800 |
commit | ff88a3b2f56ae4f3296ea957ea38f99f8bd0e5a8 (patch) | |
tree | 1ffdfa0790c2dcba92a17851bbb6d58fe99f7757 | |
parent | a9d9baa1e819b2f92f9cfa5240f766c535e636a6 (diff) | |
download | op-kernel-dev-ff88a3b2f56ae4f3296ea957ea38f99f8bd0e5a8.zip op-kernel-dev-ff88a3b2f56ae4f3296ea957ea38f99f8bd0e5a8.tar.gz |
[PATCH] memory_sysdev_class is static
So don't define it as extern in the header file.
drivers/base/memory.c:28: error: static declaration of 'memory_sysdev_class' follows non-static declaration
include/linux/memory.h:88: error: previous declaration of 'memory_sysdev_class' was here
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | include/linux/memory.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/memory.h b/include/linux/memory.h index 9a42438..dc4081b 100644 --- a/include/linux/memory.h +++ b/include/linux/memory.h @@ -85,7 +85,6 @@ struct notifier_block; extern int register_memory_notifier(struct notifier_block *nb); extern void unregister_memory_notifier(struct notifier_block *nb); -extern struct sysdev_class memory_sysdev_class; #endif /* CONFIG_MEMORY_HOTPLUG */ #define hotplug_memory_notifier(fn, pri) { \ |