]> rtime.felk.cvut.cz Git - l4.git/blob - kernel/fiasco/src/kern/arm/bsp/omap3/uart-arm-omap3.cpp
update
[l4.git] / kernel / fiasco / src / kern / arm / bsp / omap3 / uart-arm-omap3.cpp
1 IMPLEMENTATION [arm && omap3_evm]: // -------------------------------------
2
3 #include "arm/uart_omap35x.h"
4
5 IMPLEMENT L4::Uart *Uart::uart()
6 {
7   static L4::Uart_omap35x uart(72, 72);
8   return &uart;
9 }
10
11 IMPLEMENTATION [arm && omap3_beagleboard]: // -----------------------------
12
13 #include "arm/uart_omap35x.h"
14
15 IMPLEMENT L4::Uart *Uart::uart()
16 {
17   static L4::Uart_omap35x uart(74, 74);
18   return &uart;
19 }