#ifndef __UART_SERVICE_H__ #define __UART_SERVICE_H__ #include #include /* * 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__ */