summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-02-18 04:57:07 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-02-18 04:57:07 -0800
commit580c4c3b4476f9baadd4be483fd75b315bea3530 (patch)
tree27da8d135c7040c833285f20eb060e1f087c7a61 /include/linux
parente954d91056cf051eb0fa50c440f0cc603df03e4a (diff)
[PATCH] Module headers cleanup
From: Brian Gerst <bgerst@didntduck.org> Cleans up some leftovers from the old module loader: - Remove unused defines from modules.h - Remove unused file modsetver.h
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/modsetver.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/linux/modsetver.h b/include/linux/modsetver.h
deleted file mode 100644
index 7d0b9d37195b..000000000000
--- a/include/linux/modsetver.h
+++ /dev/null
@@ -1,10 +0,0 @@
-/* Symbol versioning nastiness. */
-
-#define __SYMBOL_VERSION(x) __ver_ ## x
-#define __VERSIONED_SYMBOL2(x,v) x ## _R ## v
-#define __VERSIONED_SYMBOL1(x,v) __VERSIONED_SYMBOL2(x,v)
-#define __VERSIONED_SYMBOL(x) __VERSIONED_SYMBOL1(x,__SYMBOL_VERSION(x))
-
-#ifndef _set_ver
-#define _set_ver(x) __VERSIONED_SYMBOL(x)
-#endif