Changeset 5fa10f2d in rtems


Ignore:
Timestamp:
07/18/05 14:34:41 (18 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
bb72ff9
Parents:
d8bc48b4
Message:

2005-07-18 Lars Munch <lars@…>

PR 813/networking

  • ne2000/ne2000.c: The ne2000 driver on pc386 has been broken since a parameter was added to irq handlers (2005-04-18). Before these changes the argument to the interrupt handler was the interrupt number, now the argument is handle, but the ne2000 driver needs the interrupt number. The fix is to set the handle to the interrupt number.
Location:
c/src/lib/libbsp/i386/pc386
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/i386/pc386/ChangeLog

    rd8bc48b4 r5fa10f2d  
     12005-07-18      Lars Munch <lars@segv.dk>
     2
     3        PR 813/networking
     4        * ne2000/ne2000.c: The ne2000 driver on pc386 has been broken since a
     5        parameter was added to irq handlers (2005-04-18). Before these
     6        changes the argument to the interrupt handler was the interrupt
     7        number, now the argument is handle, but the ne2000 driver needs the
     8        interrupt number. The fix is to set the handle to the interrupt
     9        number.
     10
    1112005-07-06      Ralf Corsepius <ralf.corsepius@rtems.org>
    212
  • c/src/lib/libbsp/i386/pc386/ne2000/ne2000.c

    rd8bc48b4 r5fa10f2d  
    523523  irq.name = irno;
    524524  irq.hdl = (rtems_irq_hdl)ne_interrupt_handler;
     525  irq.handle = irno;
    525526  irq.on = ne_interrupt_on;
    526527  irq.off = ne_interrupt_off;
Note: See TracChangeset for help on using the changeset viewer.