1 #ifndef _CHR_TESTDEV_H_ 2 #define _CHR_TESTDEV_H_ 3 /* 4 * chr-testdev is a driver for the chr-testdev qemu backend. 5 * The chr-testdev backend exposes a simple control interface to 6 * qemu for kvm-unit-tests accessible through virtio-console. 7 * 8 * Copyright (C) 2014, Red Hat Inc, Andrew Jones <drjones@redhat.com> 9 * 10 * This work is licensed under the terms of the GNU LGPL, version 2. 11 */ 12 extern void chr_testdev_init(void); 13 extern void chr_testdev_exit(int code); 14 #endif 15