Added missing uart file.

This commit is contained in:
Amit Mahajan
2010-03-30 20:16:31 +05:30
parent ab728dd1d5
commit d0110749bd

View File

@@ -0,0 +1,17 @@
#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 */
struct capability cap; /* Capability describing uart */
};
#endif /* __UART_SERVICE_H__ */