diff options
Diffstat (limited to 'src/mainboard/siemens/sitemp_g1p1')
-rw-r--r-- | src/mainboard/siemens/sitemp_g1p1/mainboard.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/mainboard/siemens/sitemp_g1p1/mainboard.c b/src/mainboard/siemens/sitemp_g1p1/mainboard.c index dc79d74ea5..fd19a3b61a 100644 --- a/src/mainboard/siemens/sitemp_g1p1/mainboard.c +++ b/src/mainboard/siemens/sitemp_g1p1/mainboard.c @@ -270,13 +270,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 /* ############################################################################################# */ @@ -845,7 +838,7 @@ static void enable_dev(device_t dev) dev->chip_ops->name, dev_path(dev), dev->subsystem_vendor, dev->subsystem_device, __func__); #if CONFIG_PCI_OPTION_ROM_RUN_YABEL /* Install custom int15 handler for VGA OPROM */ - int15_install(); + mainboard_interrupt_handlers(0x15, &int15_handler); #endif detect_hw_variant(dev); |