diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2008-08-14 14:35:20 +0800 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-08-14 14:35:20 +0800 |
commit | 9216bbc83826b77da9f2f396578c9d32b81e0d0b (patch) | |
tree | f907ac631f1b21305a2b0c49e3597833fcdc2af5 /arch/blackfin/mach-bf527/ints-priority.c | |
parent | 7ab37da52db98ea9f272045c837058dfc1870ac3 (diff) | |
download | op-kernel-dev-9216bbc83826b77da9f2f396578c9d32b81e0d0b.zip op-kernel-dev-9216bbc83826b77da9f2f396578c9d32b81e0d0b.tar.gz |
Blackfin arch: mark some functions as __init as they are only called from __init functions
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/mach-bf527/ints-priority.c')
-rw-r--r-- | arch/blackfin/mach-bf527/ints-priority.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/mach-bf527/ints-priority.c b/arch/blackfin/mach-bf527/ints-priority.c index 1fa3897..8a23674 100644 --- a/arch/blackfin/mach-bf527/ints-priority.c +++ b/arch/blackfin/mach-bf527/ints-priority.c @@ -31,7 +31,7 @@ #include <linux/irq.h> #include <asm/blackfin.h> -void program_IAR(void) +void __init program_IAR(void) { /* Program the IAR0 Register with the configured priority */ bfin_write_SIC_IAR0(((CONFIG_IRQ_PLL_WAKEUP - 7) << IRQ_PLL_WAKEUP_POS) | |