Changeset aa8267c in mainline


Ignore:
Timestamp:
2010-02-16T20:25:32Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9c9c6a9
Parents:
8b901f9
Message:

The MINIX 3 dp8390 has existential problems with 64-bits.

Location:
uspace/srv/net/netif/dp8390
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/netif/dp8390/dp8390.h

    r8b901f9 raa8267c  
    353353        port_t de_data_port;
    354354        int de_16bit;
    355         int de_ramsize;
     355        long de_ramsize;
    356356        int de_offset_page;
    357357        int de_startpage;
  • uspace/srv/net/netif/dp8390/dp8390_port.h

    r8b901f9 raa8267c  
    169169/** Type definition of a port.
    170170 */
    171 typedef int port_t;
     171typedef long port_t;
    172172
    173173/* dl_eth.h */
     
    256256/** Type definition of the virtual addresses and lengths in bytes.
    257257 */
    258 typedef unsigned int vir_bytes;
     258typedef unsigned long vir_bytes;
    259259
    260260/** Type definition of the input/output vector.
Note: See TracChangeset for help on using the changeset viewer.