diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2012-09-23 18:41:03 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-10-05 22:04:53 +0200 |
commit | 89bbcf4c9b8849687f86a8a31c3bdd02818953f9 (patch) | |
tree | 5ce3d294bd8012352ad90c309d1695a4deeb903d /src/mainboard/roda/rk886ex | |
parent | f3a163a1274de16771ed84d51119457ba3a2881d (diff) | |
download | coreboot-89bbcf4c9b8849687f86a8a31c3bdd02818953f9.tar.xz |
Use mainboard_interrupt_handlers everywhere
The previous commit provides a mainboard_interrupt_handlers
implementation YABEL with identical semantics to the
x86emu one, so let's use it in both cases.
This eliminates the need for the int15_install()
indirection, so let's drop that, too.
Generated using the following coccinelle patch and
manual cleanups (empty #if/#endif):
@@
type T;
identifier FUNCARR;
expression INT, HANDLER;
@@
-typedef T yabel_handleIntFunc;
-extern yabel_handleIntFunc FUNCARR[256];
-FUNCARR[INT] = HANDLER;
+mainboard_interrupt_handlers(INT, &HANDLER);
@@
@@
-void int15_install(void)
-{
-mainboard_interrupt_handlers(0x15, &int15_handler);
-}
@@
@@
-void int15_install(void)
-{
-mainboard_interrupt_handlers(0x15, &int15_handler); ... mainboard_interrupt_handlers(0x15, &int15_handler);
-}
@@
@@
-int15_install();
+mainboard_interrupt_handlers(0x15, &int15_handler);
Change-Id: I70fd780d7ebf1564a2ff7d7148411673f6de113c
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/1559
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/roda/rk886ex')
-rw-r--r-- | src/mainboard/roda/rk886ex/mainboard.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/mainboard/roda/rk886ex/mainboard.c b/src/mainboard/roda/rk886ex/mainboard.c index e2ca2ef922..78c36e3883 100644 --- a/src/mainboard/roda/rk886ex/mainboard.c +++ b/src/mainboard/roda/rk886ex/mainboard.c @@ -88,13 +88,6 @@ static int int15_handler(void) /* Interrupt handled */ return 1; } - -static void int15_install(void) -{ - typedef int (* yabel_handleIntFunc)(void); - extern yabel_handleIntFunc yabel_intFuncArray[256]; - yabel_intFuncArray[0x15] = int15_handler; -} #endif #if CONFIG_PCI_OPTION_ROM_RUN_REALMODE @@ -136,11 +129,6 @@ static int int15_handler(struct eregs *regs) return res; } - -static void int15_install(void) -{ - mainboard_interrupt_handlers(0x15, &int15_handler); -} #endif #if DUMP_RUNTIME_REGISTERS @@ -171,7 +159,7 @@ static void mainboard_enable(device_t dev) #if CONFIG_PCI_OPTION_ROM_RUN_YABEL || CONFIG_PCI_OPTION_ROM_RUN_REALMODE /* Install custom int15 handler for VGA OPROM */ - int15_install(); + mainboard_interrupt_handlers(0x15, &int15_handler); #endif #if DUMP_RUNTIME_REGISTERS dump_runtime_registers(); |