Changeset 96b02eb9 in mainline for uspace/srv/hw


Ignore:
Timestamp:
2010-12-14T12:52:38Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6b10dab
Parents:
554debd
Message:

more unification of basic types

  • use sysarg_t and native_t (unsigned and signed variant) in both kernel and uspace
  • remove ipcarg_t in favour of sysarg_t

(no change in functionality)

Location:
uspace/srv/hw
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hw/bus/cuda_adb/cuda_adb.c

    r554debd r96b02eb9  
    195195        ipc_callid_t callid;
    196196        ipc_call_t call;
    197         ipcarg_t method;
     197        sysarg_t method;
    198198        devmap_handle_t dh;
    199199        int retval;
  • uspace/srv/hw/char/i8042/i8042.c

    r554debd r96b02eb9  
    219219        ipc_callid_t callid;
    220220        ipc_call_t call;
    221         ipcarg_t method;
     221        sysarg_t method;
    222222        devmap_handle_t dh;
    223223        int retval;
  • uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c

    r554debd r96b02eb9  
    116116        ipc_callid_t callid;
    117117        ipc_call_t call;
    118         ipcarg_t method;
     118        sysarg_t method;
    119119        int retval;
    120120
  • uspace/srv/hw/cir/fhc/fhc.c

    r554debd r96b02eb9  
    133133       
    134134        async_set_client_connection(fhc_connection);
    135         ipcarg_t phonead;
     135        sysarg_t phonead;
    136136        ipc_connect_to_me(PHONE_NS, SERVICE_FHC, 0, 0, &phonead);
    137137       
  • uspace/srv/hw/cir/obio/obio.c

    r554debd r96b02eb9  
    134134       
    135135        async_set_client_connection(obio_connection);
    136         ipcarg_t phonead;
     136        sysarg_t phonead;
    137137        ipc_connect_to_me(PHONE_NS, SERVICE_OBIO, 0, 0, &phonead);
    138138       
  • uspace/srv/hw/netif/dp8390/dp8390_module.c

    r554debd r96b02eb9  
    306306
    307307int netif_initialize(void){
    308         ipcarg_t phonehash;
     308        sysarg_t phonehash;
    309309
    310310        async_set_interrupt_received(irq_handler);
Note: See TracChangeset for help on using the changeset viewer.