Changes in uspace/srv/hw/netif/dp8390/dp8390_drv.h [66b628a:46d4d9f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/netif/dp8390/dp8390_drv.h
r66b628a r46d4d9f 40 40 #include "dp8390.h" 41 41 42 int do_init(dpeth_t *dep); 42 /** Initializes and/or starts the network interface. 43 * @param[in,out] dep The network interface structure. 44 * @param[in] mode The state mode. 45 * @returns EOK on success. 46 * @returns EXDEV if the network interface is disabled. 47 */ 48 int do_init(dpeth_t *dep, int mode); 43 49 44 50 /** Stops the network interface. … … 49 55 /** Processes the interrupt. 50 56 * @param[in,out] dep The network interface structure. 57 * @param[in] isr The interrupt status register. 51 58 */ 52 void dp_check_ints( int nil_phone, device_id_t device_id, dpeth_t *dep, uint8_t isr);59 void dp_check_ints(dpeth_t *dep, int isr); 53 60 54 61 /** Probes and initializes the network interface. … … 63 70 * @param[in] packet The packet t be sent. 64 71 * @param[in] from_int The value indicating whether the sending is initialized from the interrupt handler. 65 * @returns 72 * @returns 66 73 */ 67 74 int do_pwrite(dpeth_t * dep, packet_t *packet, int from_int); 75 76 /** Prints out network interface information. 77 * @param[in] dep The network interface structure. 78 */ 79 void dp8390_dump(dpeth_t * dep); 68 80 69 81 #endif
Note:
See TracChangeset
for help on using the changeset viewer.