Changeset 5863a95 in mainline for uspace/drv


Ignore:
Timestamp:
2010-12-17T08:59:35Z (15 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
58854f2
Parents:
70e5ad5 (diff), 11658b64 (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.
Message:

Merge development/ changes

Location:
uspace/drv
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/ns8250/ns8250.c

    r70e5ad5 r5863a95  
    887887    ipc_call_t *call)
    888888{
    889         ipcarg_t method = IPC_GET_METHOD(*call);
     889        sysarg_t method = IPC_GET_IMETHOD(*call);
    890890        int ret;
    891891        unsigned int baud_rate, parity, word_length, stop_bits;
  • uspace/drv/vhc/conn.h

    r70e5ad5 r5863a95  
    4242#include "devices.h"
    4343
    44 void connection_handler_host(ipcarg_t);
     44void connection_handler_host(sysarg_t);
    4545
    4646usb_hcd_transfer_ops_t vhc_transfer_ops;
  • uspace/drv/vhc/conndev.c

    r70e5ad5 r5863a95  
    4747{
    4848        ipc_call_t answer_data;
    49         ipcarg_t answer_rc;
     49        sysarg_t answer_rc;
    5050        aid_t req;
    5151        int rc;
     
    8383    ipc_callid_t icallid, ipc_call_t *icall)
    8484{
    85         ipcarg_t method = IPC_GET_METHOD(*icall);
     85        sysarg_t method = IPC_GET_IMETHOD(*icall);
    8686
    8787        if (method == IPC_M_CONNECT_TO_ME) {
  • uspace/drv/vhc/debug.c

    r70e5ad5 r5863a95  
    4242/** Debug print informing of invalid call.
    4343 */
    44 void dprintf_inval_call(int level, ipc_call_t call, ipcarg_t phone_hash)
     44void dprintf_inval_call(int level, ipc_call_t call, sysarg_t phone_hash)
    4545{
    4646        dprintf(level, "phone%#x: invalid call [%u (%u, %u, %u, %u, %u)]",
    4747            phone_hash,
    48             IPC_GET_METHOD(call),
     48            IPC_GET_IMETHOD(call),
    4949            IPC_GET_ARG1(call), IPC_GET_ARG2(call), IPC_GET_ARG3(call),
    5050            IPC_GET_ARG4(call), IPC_GET_ARG5(call));
  • uspace/drv/vhc/devices.c

    r70e5ad5 r5863a95  
    100100               
    101101                ipc_call_t answer_data;
    102                 ipcarg_t answer_rc;
     102                sysarg_t answer_rc;
    103103                aid_t req;
    104104                int rc = EOK;
  • uspace/drv/vhc/vhcd.h

    r70e5ad5 r5863a95  
    4747#define dprintf(level, format, ...) \
    4848        usb_dprintf(NAME, (level), format "\n", ##__VA_ARGS__)
    49 void dprintf_inval_call(int, ipc_call_t, ipcarg_t);
     49void dprintf_inval_call(int, ipc_call_t, sysarg_t);
    5050
    5151#endif
Note: See TracChangeset for help on using the changeset viewer.