Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hw/irc/fhc/fhc.c

    r9934f7d r57d129e  
    3838#include <ipc/services.h>
    3939#include <ipc/irc.h>
    40 #include <ns.h>
     40#include <ipc/ns.h>
    4141#include <sysinfo.h>
    4242#include <as.h>
     
    5353#define NAME "fhc"
    5454
    55 #define FHC_UART_INR    0x39
     55#define FHC_UART_INR    0x39   
    5656
    5757#define FHC_UART_IMAP   0x0
     
    6666 * @param iid           Hash of the request that opened the connection.
    6767 * @param icall         Call data of the request that opened the connection.
    68  * @param arg           Local argument.
    6968 */
    70 static void fhc_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
     69static void fhc_connection(ipc_callid_t iid, ipc_call_t *icall)
    7170{
    7271        ipc_callid_t callid;
     
    129128       
    130129        if (retval < 0) {
    131                 printf("%s: Error mapping FHC UART registers\n", NAME);
     130                printf(NAME ": Error mapping FHC UART registers\n");
    132131                return false;
    133132        }
    134133       
    135         printf("%s: FHC UART registers at %p, %zu bytes\n", NAME,
    136             fhc_uart_phys, fhc_uart_size);
     134        printf(NAME ": FHC UART registers at %p, %zu bytes\n", fhc_uart_phys,
     135            fhc_uart_size);
    137136       
    138137        async_set_client_connection(fhc_connection);
     
    144143int main(int argc, char **argv)
    145144{
    146         printf("%s: HelenOS FHC bus controller driver\n", NAME);
     145        printf(NAME ": HelenOS FHC bus controller driver\n");
    147146       
    148147        if (!fhc_init())
    149148                return -1;
    150149       
    151         printf("%s: Accepting connections\n", NAME);
    152         task_retval(0);
     150        printf(NAME ": Accepting connections\n");
    153151        async_manager();
    154        
     152
    155153        /* Never reached */
    156154        return 0;
     
    159157/**
    160158 * @}
    161  */
     159 */ 
Note: See TracChangeset for help on using the changeset viewer.