Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hw/char/i8042/i8042.c

    r228e490 r991f645  
    4646#include <stdio.h>
    4747#include <errno.h>
    48 #include <inttypes.h>
    4948
    5049#include "i8042.h"
     
    202201        ipc_register_irq(inr_a, device_assign_devno(), 0, &i8042_kbd);
    203202        ipc_register_irq(inr_b, device_assign_devno(), 0, &i8042_kbd);
    204         printf("%s: registered for interrupts %" PRIun " and %" PRIun "\n",
    205             NAME, inr_a, inr_b);
     203        printf("%s: registered for interrupts %d and %d\n", NAME, inr_a, inr_b);
    206204
    207205        wait_ready();
     
    219217        ipc_callid_t callid;
    220218        ipc_call_t call;
    221         sysarg_t method;
     219        ipcarg_t method;
    222220        devmap_handle_t dh;
    223221        int retval;
     
    248246        while (1) {
    249247                callid = async_get_call(&call);
    250                 method = IPC_GET_IMETHOD(call);
     248                method = IPC_GET_METHOD(call);
    251249                switch (method) {
    252250                case IPC_M_PHONE_HUNGUP:
     
    264262                        break;
    265263                case IPC_FIRST_USER_METHOD:
    266                         printf(NAME ": write %" PRIun " to devid %d\n",
     264                        printf(NAME ": write %d to devid %d\n",
    267265                            IPC_GET_ARG1(call), dev_id);
    268266                        i8042_port_write(dev_id, IPC_GET_ARG1(call));
Note: See TracChangeset for help on using the changeset viewer.