diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2009-03-12 15:52:45 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-03-23 22:47:28 -0400 |
commit | 097529f34e9fee9487fded1aa002ea095be62371 (patch) | |
tree | 5e0af979c4b3e0d8dc54fe4d55f0780292129aa0 | |
parent | ebf0f334ddafeea628e0e048af7f09c440cafb50 (diff) |
powerpc/msi: Mark the MSI bitmap selftest code as __init
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r-- | arch/powerpc/sysdev/msi_bitmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/sysdev/msi_bitmap.c b/arch/powerpc/sysdev/msi_bitmap.c index f84217b8863a..5a32cbef9b6c 100644 --- a/arch/powerpc/sysdev/msi_bitmap.c +++ b/arch/powerpc/sysdev/msi_bitmap.c | |||
@@ -141,7 +141,7 @@ void msi_bitmap_free(struct msi_bitmap *bmp) | |||
141 | #define check(x) \ | 141 | #define check(x) \ |
142 | if (!(x)) printk("msi_bitmap: test failed at line %d\n", __LINE__); | 142 | if (!(x)) printk("msi_bitmap: test failed at line %d\n", __LINE__); |
143 | 143 | ||
144 | void test_basics(void) | 144 | void __init test_basics(void) |
145 | { | 145 | { |
146 | struct msi_bitmap bmp; | 146 | struct msi_bitmap bmp; |
147 | int i, size = 512; | 147 | int i, size = 512; |
@@ -186,7 +186,7 @@ void test_basics(void) | |||
186 | kfree(bmp.bitmap); | 186 | kfree(bmp.bitmap); |
187 | } | 187 | } |
188 | 188 | ||
189 | void test_of_node(void) | 189 | void __init test_of_node(void) |
190 | { | 190 | { |
191 | u32 prop_data[] = { 10, 10, 25, 3, 40, 1, 100, 100, 200, 20 }; | 191 | u32 prop_data[] = { 10, 10, 25, 3, 40, 1, 100, 100, 200, 20 }; |
192 | const char *expected_str = "0-9,20-24,28-39,41-99,220-255"; | 192 | const char *expected_str = "0-9,20-24,28-39,41-99,220-255"; |
@@ -234,7 +234,7 @@ void test_of_node(void) | |||
234 | kfree(bmp.bitmap); | 234 | kfree(bmp.bitmap); |
235 | } | 235 | } |
236 | 236 | ||
237 | int msi_bitmap_selftest(void) | 237 | int __init msi_bitmap_selftest(void) |
238 | { | 238 | { |
239 | printk(KERN_DEBUG "Running MSI bitmap self-tests ...\n"); | 239 | printk(KERN_DEBUG "Running MSI bitmap self-tests ...\n"); |
240 | 240 | ||