]> rtime.felk.cvut.cz Git - l4.git/blob - kernel/fiasco/src/kern/kernel_uart-16550.cpp
update
[l4.git] / kernel / fiasco / src / kern / kernel_uart-16550.cpp
1 INTERFACE[16550]:
2
3 // The port-based 16550 UART can be used before the MMU is initialized
4 EXTENSION class Kernel_uart { enum { Bsp_init_mode = Init_before_mmu }; };
5
6 IMPLEMENTATION[16550]:
7
8 IMPLEMENT
9 bool Kernel_uart::startup(unsigned port, int irq)
10 {
11   return Uart::startup(port, irq);
12 }