]> git.proxmox.com Git - qemu.git/blobdiff - hw/usb/hcd-ehci.h
monitor: move include files to include/monitor/
[qemu.git] / hw / usb / hcd-ehci.h
index d8078f45555c976f48a9f66857b41407f5239ffb..740f7309fb5ea1bdf549cf162968cd1fd6c8fc43 100644 (file)
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
+#ifndef HW_USB_EHCI_H
+#define HW_USB_EHCI_H 1
 
 #include "hw/hw.h"
 #include "qemu-timer.h"
 #include "hw/usb.h"
-#include "monitor.h"
+#include "monitor/monitor.h"
 #include "trace.h"
 #include "dma.h"
 #include "sysemu.h"
@@ -311,9 +313,12 @@ struct EHCIState {
 
     uint64_t last_run_ns;
     uint32_t async_stepdown;
+    uint32_t periodic_sched_active;
     bool int_req_by_async;
 };
 
 extern const VMStateDescription vmstate_ehci;
 
 void usb_ehci_initfn(EHCIState *s, DeviceState *dev);
+
+#endif