Subversion Repositories HelenOS

Rev

Rev 1888 | Rev 1942 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1888 Rev 1937
Line 257... Line 257...
257
        panic("\nUnhandled Virtual Interrupt request %d\n", irq);
257
        panic("\nUnhandled Virtual Interrupt request %d\n", irq);
258
        break;
258
        break;
259
    }
259
    }
260
}
260
}
261
 
261
 
262
/* Reregister irq to be IPC-ready */
-
 
263
void irq_ipc_bind_arch(unative_t irq)
-
 
264
{
-
 
265
    if(irq == IRQ_KBD) {
-
 
266
        kbd_uspace = 1;
-
 
267
        return;
-
 
268
    }
-
 
269
    return;
-
 
270
    panic("not implemented\n");
-
 
271
    /* TODO */
-
 
272
}
-
 
273
 
-
 
274
/** @}
262
/** @}
275
 */
263
 */