Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4072 → Rev 4073

/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();