Files
Bahadir Balban 6fa4884a5a Changes since April
Clean up of build directories.
Simplifications to capability model.
2010-06-01 15:08:13 +03:00

18 lines
340 B
C

#ifndef __UART_SERVICE_H__
#define __UART_SERVICE_H__
#include <l4/api/capability.h>
#include <l4/generic/cap-types.h>
/*
* uart structure ecapsulating
* capability and virtual base address of uart
*/
struct uart {
unsigned long base; /* VMA where uart will be mapped */
unsigned long phys_base;
};
#endif /* __UART_SERVICE_H__ */