hcd-ohci.c (923fd9897b0ffbcc5091181f8b0484aa2e36413b) | hcd-ohci.c (a2cb15b0ddfa05f81a42d7b65dd0c7c50e420c33) |
---|---|
1/* 2 * QEMU USB OHCI Emulation 3 * Copyright (c) 2004 Gianni Tedesco 4 * Copyright (c) 2006 CodeSourcery 5 * Copyright (c) 2006 Openedhand Ltd. 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public --- 15 unchanged lines hidden (view full) --- 24 * all together. 25 * o Handle unrecoverable errors properly 26 * o BIOS work to boot from USB storage 27*/ 28 29#include "hw/hw.h" 30#include "qemu-timer.h" 31#include "hw/usb.h" | 1/* 2 * QEMU USB OHCI Emulation 3 * Copyright (c) 2004 Gianni Tedesco 4 * Copyright (c) 2006 CodeSourcery 5 * Copyright (c) 2006 Openedhand Ltd. 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public --- 15 unchanged lines hidden (view full) --- 24 * all together. 25 * o Handle unrecoverable errors properly 26 * o BIOS work to boot from USB storage 27*/ 28 29#include "hw/hw.h" 30#include "qemu-timer.h" 31#include "hw/usb.h" |
32#include "hw/pci.h" | 32#include "hw/pci/pci.h" |
33#include "hw/sysbus.h" 34#include "hw/qdev-dma.h" 35 36//#define DEBUG_OHCI 37/* Dump packet contents. */ 38//#define DEBUG_PACKET 39//#define DEBUG_ISOCH 40/* This causes frames to occur 1000x slower */ --- 1886 unchanged lines hidden --- | 33#include "hw/sysbus.h" 34#include "hw/qdev-dma.h" 35 36//#define DEBUG_OHCI 37/* Dump packet contents. */ 38//#define DEBUG_PACKET 39//#define DEBUG_ISOCH 40/* This causes frames to occur 1000x slower */ --- 1886 unchanged lines hidden --- |