Changeset bfd7aac in mainline for uspace/srv/net/netif/dp8390/dp8390_module.c
- Timestamp:
- 2010-02-17T19:19:08Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1e2e0c1e
- Parents:
- 01a9ef5 (diff), b8da2a3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netif/dp8390/dp8390_module.c
r01a9ef5 rbfd7aac 208 208 } 209 209 210 int netif_probe_message( device_id_t device_id, int irq, int io ){210 int netif_probe_message( device_id_t device_id, int irq, uintptr_t io ){ 211 211 ERROR_DECLARE; 212 212 … … 280 280 if( device->state != NETIF_ACTIVE ){ 281 281 dep = ( dpeth_t * ) device->specific; 282 dp8390_cmds[ 0 ].addr = ( void * ) ( uint 32_t ) ( dep->de_dp8390_port + DP_ISR );282 dp8390_cmds[ 0 ].addr = ( void * ) ( uintptr_t ) ( dep->de_dp8390_port + DP_ISR ); 283 283 dp8390_cmds[ 2 ].addr = dp8390_cmds[ 0 ].addr; 284 284 ERROR_PROPAGATE( ipc_register_irq( dep->de_irq, device->device_id, device->device_id, & dp8390_code ));
Note:
See TracChangeset
for help on using the changeset viewer.