Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3862 → Rev 4073

/branches/sparc/kernel/generic/src/ipc/kbox.c
38,8 → 38,10
#include <ipc/ipc.h>
#include <ipc/ipcrsc.h>
#include <arch.h>
#include <arch/asm.h>
#include <errno.h>
#include <debug.h>
#include <print.h>
#include <udebug/udebug_ipc.h>
#include <ipc/kbox.h>
 
/branches/sparc/kernel/generic/src/ipc/irq.c
59,6 → 59,10
#include <console/console.h>
#include <print.h>
 
#if defined(sparc64) && defined(SUN4V)
#include <arch/drivers/niagara.h>
#endif
 
/** Execute code associated with IRQ notification.
*
* @param call Notification call.
114,6 → 118,11
dstval = _getc(&ski_uconsole);
break;
#endif
#if defined(sparc64) && defined(SUN4V)
case CMD_NIAGARA_GETCHAR:
dstval = niagara_getc();
break;
#endif
#if defined(ppc32)
case CMD_PPC32_GETCHAR:
dstval = cuda_get_scancode();