summaryrefslogtreecommitdiff
path: root/include/linux/module.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@athlon.transmeta.com>2002-02-04 20:33:47 -0800
committerLinus Torvalds <torvalds@athlon.transmeta.com>2002-02-04 20:33:47 -0800
commit2d46136da942fda8496a564524dddf2ac3881221 (patch)
tree9438d19f7e881415c2d0f8a44450723de3bc1250 /include/linux/module.h
parent1fc742dd8e03a4957af9c1fee4a4e465781ba7a9 (diff)
v2.4.14.4 -> v2.4.14.5
- Greg KH: enable hotplug driver support - Andrea Arcangeli: remove bogus sanity check - David Mosberger: /proc/cpuinfo and scsi scatter-gather for ia64 - David Hinds: 16-bit pcmcia network driver updates/cleanups - Hugh Dickins: remove some stale code from VM - David Miller: /proc/cpuinfo for sparc, sparc fork bug fix, network fixes, warning fixes - Peter Braam: intermezzo update - Greg KH: USB updates - Ivan Kokshaysky: /proc/cpuinfo for alpha - David Woodhouse: jffs2 - remove dead code, remove gcc3 warning - Hugh Dickins: fix kiobuf page allocation/deallocation
Diffstat (limited to 'include/linux/module.h')
-rw-r--r--include/linux/module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/module.h b/include/linux/module.h
index e554242553a6..f3a8370db10a 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -317,7 +317,7 @@ static const char __module_using_checksums[] __attribute__((section(".modinfo"))
* const, other exit data may be writable.
*/
#define MODULE_GENERIC_TABLE(gtype,name) \
-static struct gtype##_id * __module_##gtype##_table \
+static const struct gtype##_id * __module_##gtype##_table \
__attribute__ ((unused, __section__(".data.exit"))) = name
#ifndef __GENKSYMS__