1 /* 2 * xen/arch/arm/vuart.h 3 * 4 * Virtual UART Emulation Support 5 * 6 * Ian Campbell <ian.campbell@citrix.com> 7 * Copyright (c) 2012 Citrix Systems. 8 * 9 * This program is free software; you can redistribute it and/or modify 10 * it under the terms of the GNU General Public License as published by 11 * the Free Software Foundation; either version 2 of the License, or 12 * (at your option) any later version. 13 * 14 * This program is distributed in the hope that it will be useful, 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 * GNU General Public License for more details. 18 */ 19 20 #ifndef __ARCH_ARM_VUART_H__ 21 #define __ARCH_ARM_VUART_H__ 22 23 int domain_vuart_init(struct domain *d); 24 void domain_vuart_free(struct domain *d); 25 26 #endif /* __ARCH_ARM_VUART_H__ */ 27 28 /* 29 * Local variables: 30 * mode: C 31 * c-file-style: "BSD" 32 * c-basic-offset: 4 33 * indent-tabs-mode: nil 34 * End: 35 */ 36