forked from Imagelibrary/rtems
2011-12-03 Ralf Corsépius <ralf.corsepius@rtems.org>
* libchip/ide/ata.c: Make ata_interrupt_handler static. * libchip/ide/ide_controller.c: Include libchip/ide_ctrl.h.
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
2011-12-03 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* libchip/ide/ata.c: Make ata_interrupt_handler static.
|
||||
* libchip/ide/ide_controller.c: Include libchip/ide_ctrl.h.
|
||||
* libchip/display/disp_hcms29xx.c: Add missing initializer.
|
||||
|
||||
2011-11-09 Jennifer Averett <jennifer.averett@oarcorp.com>
|
||||
|
||||
@@ -630,8 +630,7 @@ ata_add_to_controller_queue(rtems_device_minor_number ctrl_minor,
|
||||
* NONE
|
||||
*/
|
||||
#if defined(CPU_SIMPLE_VECTORED_INTERRUPTS)
|
||||
rtems_isr
|
||||
ata_interrupt_handler(rtems_vector_number vec)
|
||||
static rtems_isr ata_interrupt_handler(rtems_vector_number vec)
|
||||
{
|
||||
rtems_chain_node *the_node = rtems_chain_first(&ata_int_vec[vec]);
|
||||
ata_queue_msg_t msg;
|
||||
@@ -654,7 +653,7 @@ ata_interrupt_handler(rtems_vector_number vec)
|
||||
}
|
||||
}
|
||||
#else
|
||||
void ata_interrupt_handler(rtems_irq_hdl_param handle)
|
||||
static void ata_interrupt_handler(rtems_irq_hdl_param handle)
|
||||
{
|
||||
int ata_irq_chain_index = (int) handle;
|
||||
rtems_chain_node *the_node =
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
#include <errno.h>
|
||||
#include <rtems/blkdev.h>
|
||||
|
||||
#include <libchip/ide_ctrl.h>
|
||||
#include <libchip/ide_ctrl_cfg.h>
|
||||
#include <libchip/ide_ctrl_io.h>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user