Changeset 8820544 in mainline for uspace/drv/nic/rtl8169/driver.c


Ignore:
Timestamp:
2014-08-16T00:02:04Z (10 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
35b8bfe, 8cd680c
Parents:
83f29e0
Message:

support for kernel notification multiplexing in the async framework

  • rename SYS_EVENT_* and SYS_IRQ_* syscalls to unify the terminology
  • add SYS_IPC_EVENT_UNSUBSCRIBE
  • remove IRQ handler multiplexing from DDF, the generic mechanism replaces it (unfortunatelly the order of arguments used by interrupt_handler_t needs to be permutated to align with the async framework conventions)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/nic/rtl8169/driver.c

    r83f29e0 r8820544  
    7676static int rtl8169_on_stopped(nic_t *nic_data);
    7777static void rtl8169_send_frame(nic_t *nic_data, void *data, size_t size);
    78 static void rtl8169_irq_handler(ddf_dev_t *dev, ipc_callid_t iid,
    79     ipc_call_t *icall);
     78static void rtl8169_irq_handler(ipc_callid_t iid, ipc_call_t *icall,
     79    ddf_dev_t *dev);
    8080static inline int rtl8169_register_int_handler(nic_t *nic_data);
    8181static inline void rtl8169_get_hwaddr(rtl8169_t *rtl8169, nic_address_t *addr);
     
    897897}
    898898
    899 static void rtl8169_irq_handler(ddf_dev_t *dev, ipc_callid_t iid,
    900     ipc_call_t *icall)
     899static void rtl8169_irq_handler(ipc_callid_t iid, ipc_call_t *icall,
     900    ddf_dev_t *dev)
    901901{
    902902        assert(dev);
Note: See TracChangeset for help on using the changeset viewer.