* shared/irq/openpic_i8259_irq.c: fixed type of

'frame' argument to C_dispatch_irq_handler(). It's
	really a BSP_Exception_frame*, not a CPU_Interrupt_frame*.
This commit is contained in:
Till Straumann
2006-08-11 00:29:52 +00:00
parent 8f6c409e41
commit ced8ea7dac
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2006-08-10 Till Straumann <strauman@slac.stanford.edu>
* shared/irq/openpic_i8259_irq.c: fixed type of
'frame' argument to C_dispatch_irq_handler(). It's
really a BSP_Exception_frame*, not a CPU_Interrupt_frame*.
2006-07-12 Till Straumann <strauman@slac.stanford.edu>
* shared/startup/probeMemEnd.c: added paranoia to inline

View File

@@ -208,7 +208,7 @@ unsigned BSP_spuriousIntr = 0;
/*
* High level IRQ handler called from shared_raw_irq_code_entry
*/
void C_dispatch_irq_handler (CPU_Interrupt_frame *frame, unsigned int excNum)
void C_dispatch_irq_handler (BSP_Exception_frame *frame, unsigned int excNum)
{
register unsigned int irq;
#ifdef BSP_PCI_ISA_BRIDGE_IRQ