diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-03-26 10:24:04 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-03-26 10:24:11 -0400 |
commit | 1485c5c88483d200c9c4c71ed7e8eef1a1e317a1 (patch) | |
tree | ad42514ca55815ee6e2468ebc45ee0ef91e6d1db /arch/s390/kernel/bitmap.c | |
parent | e3dd9c2da674993edb5b52acb56a5d954415639b (diff) |
[S390] move EXPORT_SYMBOLs to definitions
Move all EXPORT_SYMBOLs to their corresponding definitions.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/bitmap.c')
-rw-r--r-- | arch/s390/kernel/bitmap.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/s390/kernel/bitmap.c b/arch/s390/kernel/bitmap.c index 54e362b4267d..3ae4757b006a 100644 --- a/arch/s390/kernel/bitmap.c +++ b/arch/s390/kernel/bitmap.c | |||
@@ -7,10 +7,13 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include <linux/bitops.h> | 9 | #include <linux/bitops.h> |
10 | #include <linux/module.h> | ||
10 | 11 | ||
11 | const char _oi_bitmap[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 }; | 12 | const char _oi_bitmap[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 }; |
13 | EXPORT_SYMBOL(_oi_bitmap); | ||
12 | 14 | ||
13 | const char _ni_bitmap[] = { 0xfe, 0xfd, 0xfb, 0xf7, 0xef, 0xdf, 0xbf, 0x7f }; | 15 | const char _ni_bitmap[] = { 0xfe, 0xfd, 0xfb, 0xf7, 0xef, 0xdf, 0xbf, 0x7f }; |
16 | EXPORT_SYMBOL(_ni_bitmap); | ||
14 | 17 | ||
15 | const char _zb_findmap[] = { | 18 | const char _zb_findmap[] = { |
16 | 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4, | 19 | 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4, |
@@ -29,6 +32,7 @@ const char _zb_findmap[] = { | |||
29 | 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5, | 32 | 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5, |
30 | 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4, | 33 | 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4, |
31 | 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,8 }; | 34 | 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,8 }; |
35 | EXPORT_SYMBOL(_zb_findmap); | ||
32 | 36 | ||
33 | const char _sb_findmap[] = { | 37 | const char _sb_findmap[] = { |
34 | 8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0, | 38 | 8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0, |
@@ -47,3 +51,4 @@ const char _sb_findmap[] = { | |||
47 | 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0, | 51 | 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0, |
48 | 5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0, | 52 | 5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0, |
49 | 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 }; | 53 | 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 }; |
54 | EXPORT_SYMBOL(_sb_findmap); | ||