Browse Source

usb: Clean up includes

Clean up includes so that osdep.h is included first and headers
which it implies are not included manually.

This commit was created with scripts/clean-includes.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1453832250-766-20-git-send-email-peter.maydell@linaro.org
pull/36/head
Peter Maydell 10 years ago
parent
commit
e532b2e008
  1. 1
      hw/usb/bus.c
  2. 1
      hw/usb/ccid-card-emulated.c
  3. 1
      hw/usb/ccid-card-passthru.c
  4. 1
      hw/usb/combined-packet.c
  5. 1
      hw/usb/core.c
  6. 1
      hw/usb/desc-msos.c
  7. 2
      hw/usb/desc.c
  8. 1
      hw/usb/dev-audio.c
  9. 1
      hw/usb/dev-bluetooth.c
  10. 1
      hw/usb/dev-hid.c
  11. 1
      hw/usb/dev-hub.c
  12. 3
      hw/usb/dev-mtp.c
  13. 1
      hw/usb/dev-network.c
  14. 1
      hw/usb/dev-serial.c
  15. 1
      hw/usb/dev-smartcard-reader.c
  16. 1
      hw/usb/dev-storage.c
  17. 1
      hw/usb/dev-uas.c
  18. 1
      hw/usb/dev-wacom.c
  19. 1
      hw/usb/hcd-ehci-pci.c
  20. 1
      hw/usb/hcd-ehci-sysbus.c
  21. 1
      hw/usb/hcd-ehci.c
  22. 1
      hw/usb/hcd-musb.c
  23. 1
      hw/usb/hcd-ohci.c
  24. 1
      hw/usb/hcd-uhci.c
  25. 1
      hw/usb/hcd-xhci.c
  26. 1
      hw/usb/host-legacy.c
  27. 1
      hw/usb/host-libusb.c
  28. 1
      hw/usb/host-stub.c
  29. 1
      hw/usb/libhw.c
  30. 1
      hw/usb/quirks.c
  31. 1
      hw/usb/redirect.c
  32. 4
      tests/usb-hcd-ehci-test.c
  33. 3
      tests/usb-hcd-ohci-test.c
  34. 3
      tests/usb-hcd-uhci-test.c
  35. 3
      tests/usb-hcd-xhci-test.c

1
hw/usb/bus.c

@ -1,3 +1,4 @@
#include "qemu/osdep.h"
#include "hw/hw.h"
#include "hw/usb.h"
#include "hw/qdev.h"

1
hw/usb/ccid-card-emulated.c

@ -26,6 +26,7 @@
* the db parameter.
*/
#include "qemu/osdep.h"
#include <eventt.h>
#include <vevent.h>
#include <vreader.h>

1
hw/usb/ccid-card-passthru.c

@ -8,6 +8,7 @@
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include "sysemu/char.h"
#include "qemu/error-report.h"
#include "qemu/sockets.h"

1
hw/usb/combined-packet.c

@ -19,6 +19,7 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "hw/usb.h"
#include "qemu/iov.h"

1
hw/usb/core.c

@ -23,6 +23,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "hw/usb.h"
#include "qemu/iov.h"

1
hw/usb/desc-msos.c

@ -1,3 +1,4 @@
#include "qemu/osdep.h"
#include "hw/usb.h"
#include "hw/usb/desc.h"

2
hw/usb/desc.c

@ -1,4 +1,4 @@
#include <ctype.h>
#include "qemu/osdep.h"
#include "hw/usb.h"
#include "hw/usb/desc.h"

1
hw/usb/dev-audio.c

@ -29,6 +29,7 @@
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "hw/usb.h"
#include "hw/usb/desc.h"

1
hw/usb/dev-bluetooth.c

@ -18,6 +18,7 @@
* with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qemu/error-report.h"
#include "hw/usb.h"

1
hw/usb/dev-hid.c

@ -22,6 +22,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "hw/hw.h"
#include "ui/console.h"
#include "hw/usb.h"

1
hw/usb/dev-hub.c

@ -21,6 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "trace.h"
#include "hw/usb.h"

3
hw/usb/dev-mtp.c

@ -9,11 +9,10 @@
* This code is licensed under the GPL v2 or later.
*/
#include "qemu/osdep.h"
#include <wchar.h>
#include <dirent.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/statvfs.h>
#ifdef __linux__
#include <sys/inotify.h>

1
hw/usb/dev-network.c

@ -23,6 +23,7 @@
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "hw/usb.h"
#include "hw/usb/desc.h"

1
hw/usb/dev-serial.c

@ -8,6 +8,7 @@
* This code is licensed under the LGPL.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qemu/error-report.h"
#include "hw/usb.h"

1
hw/usb/dev-smartcard-reader.c

@ -34,6 +34,7 @@
* Not sure which messages trigger this.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qemu/error-report.h"
#include "hw/usb.h"

1
hw/usb/dev-storage.c

@ -7,6 +7,7 @@
* This code is licensed under the LGPL.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qemu/error-report.h"
#include "qemu/option.h"

1
hw/usb/dev-uas.c

@ -9,6 +9,7 @@
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qemu/option.h"
#include "qemu/config-file.h"

1
hw/usb/dev-wacom.c

@ -25,6 +25,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "hw/hw.h"
#include "ui/console.h"
#include "hw/usb.h"

1
hw/usb/hcd-ehci-pci.c

@ -15,6 +15,7 @@
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "qemu/osdep.h"
#include "hw/usb/hcd-ehci.h"
#include "qemu/range.h"

1
hw/usb/hcd-ehci-sysbus.c

@ -15,6 +15,7 @@
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "qemu/osdep.h"
#include "hw/usb/hcd-ehci.h"
static const VMStateDescription vmstate_ehci_sysbus = {

1
hw/usb/hcd-ehci.c

@ -27,6 +27,7 @@
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "qemu/osdep.h"
#include "hw/usb/ehci-regs.h"
#include "hw/usb/hcd-ehci.h"
#include "trace.h"

1
hw/usb/hcd-musb.c

@ -20,6 +20,7 @@
*
* Only host-mode and non-DMA accesses are currently supported.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qemu/timer.h"
#include "hw/usb.h"

1
hw/usb/hcd-ohci.c

@ -25,6 +25,7 @@
* o BIOS work to boot from USB storage
*/
#include "qemu/osdep.h"
#include "hw/hw.h"
#include "qemu/timer.h"
#include "hw/usb.h"

1
hw/usb/hcd-uhci.c

@ -25,6 +25,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "hw/hw.h"
#include "hw/usb.h"
#include "hw/usb/uhci-regs.h"

1
hw/usb/hcd-xhci.c

@ -18,6 +18,7 @@
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#include "qemu/osdep.h"
#include "hw/hw.h"
#include "qemu/timer.h"
#include "hw/usb.h"

1
hw/usb/host-legacy.c

@ -30,6 +30,7 @@
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "hw/usb.h"
#include "hw/usb/host.h"

1
hw/usb/host-libusb.c

@ -33,6 +33,7 @@
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include <poll.h>
#include <libusb.h>

1
hw/usb/host-stub.c

@ -30,6 +30,7 @@
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "ui/console.h"
#include "hw/usb.h"

1
hw/usb/libhw.c

@ -19,6 +19,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "hw/hw.h"
#include "hw/usb.h"

1
hw/usb/quirks.c

@ -12,6 +12,7 @@
* (at your option) any later version.
*/
#include "qemu/osdep.h"
#include "quirks.h"
#include "hw/usb.h"

1
hw/usb/redirect.c

@ -25,6 +25,7 @@
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qemu/timer.h"
#include "sysemu/sysemu.h"

4
tests/usb-hcd-ehci-test.c

@ -7,12 +7,10 @@
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include <glib.h>
#include <string.h>
#include <stdio.h>
#include "libqtest.h"
#include "libqos/pci-pc.h"
#include "qemu/osdep.h"
#include "hw/usb/uhci-regs.h"
#include "hw/usb/ehci-regs.h"
#include "libqos/usb.h"

3
tests/usb-hcd-ohci-test.c

@ -7,10 +7,9 @@
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include <glib.h>
#include <string.h>
#include "libqtest.h"
#include "qemu/osdep.h"
#include "libqos/usb.h"

3
tests/usb-hcd-uhci-test.c

@ -7,10 +7,9 @@
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include <glib.h>
#include <string.h>
#include "libqtest.h"
#include "qemu/osdep.h"
#include "libqos/usb.h"
#include "hw/usb/uhci-regs.h"

3
tests/usb-hcd-xhci-test.c

@ -7,10 +7,9 @@
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include <glib.h>
#include <string.h>
#include "libqtest.h"
#include "qemu/osdep.h"
#include "libqos/usb.h"

Loading…
Cancel
Save