Ignore:
File:
1 edited

Legend:

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

    r228e490 r991f645  
    4848#include <sysinfo.h>
    4949#include <errno.h>
    50 #include <inttypes.h>
    5150
    5251#include "s3c24xx_uart.h"
     
    9695        if (rc != EOK) {
    9796                devmap_hangup_phone(DEVMAP_DRIVER);
    98                 printf(NAME ": Unable to register device %s.\n",
    99                     NAMESPACE "/" NAME);
     97                printf(NAME ": Unable to register device %s.\n");
    10098                return -1;
    10199        }
     
    116114        ipc_callid_t callid;
    117115        ipc_call_t call;
    118         sysarg_t method;
     116        ipcarg_t method;
    119117        int retval;
    120118
     
    124122        while (1) {
    125123                callid = async_get_call(&call);
    126                 method = IPC_GET_IMETHOD(call);
     124                method = IPC_GET_METHOD(call);
    127125                switch (method) {
    128126                case IPC_M_PHONE_HUNGUP:
     
    136134                        break;
    137135                case CHAR_WRITE_BYTE:
    138                         printf(NAME ": write %" PRIun " to device\n",
     136                        printf(NAME ": write %d to device\n",
    139137                            IPC_GET_ARG1(call));
    140138                        s3c24xx_uart_sendb(uart, (uint8_t) IPC_GET_ARG1(call));
     
    187185        uart->client_phone = -1;
    188186
    189         printf(NAME ": device at physical address %p, inr %" PRIun ".\n",
    190             (void *) uart->paddr, inr);
     187        printf(NAME ": device at physical address 0x%x, inr %d.\n",
     188            uart->paddr, inr);
    191189
    192190        async_set_interrupt_received(s3c24xx_uart_irq_handler);
Note: See TracChangeset for help on using the changeset viewer.