1 /* 2 * SPAPR HV console 3 * 4 * Copyright (c) 2011 Matt Evans <matt@ozlabs.org>, IBM Corporation. 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 as published 8 * by the Free Software Foundation. 9 */ 10 11 #ifndef spapr_hvcons_H 12 #define spapr_hvcons_H 13 14 #include "kvm/kvm.h" 15 16 void spapr_hvcons_init(void); 17 void spapr_hvcons_poll(struct kvm *kvm); 18 19 #endif 20