]> rtime.felk.cvut.cz Git - l4.git/blob - kernel/fiasco/src/kern/arm/bsp/omap3/kernel_uart-arm-omap3.cpp
a576a52e1a160bebd60761fdc256c9c92656a7aa
[l4.git] / kernel / fiasco / src / kern / arm / bsp / omap3 / kernel_uart-arm-omap3.cpp
1 IMPLEMENTATION [arm && omap3 && serial]:
2
3 #include "mem_layout.h"
4
5 IMPLEMENT
6 bool Kernel_uart::startup(unsigned port, int /*irq*/)
7 {
8   if(port!=3) return false;
9   return Uart::startup(Mem_layout::Uart_base, 123456);
10 }