dev-storage.c (28ecbaeecb139a214f019207402a35d7b58aec0f) | dev-storage.c (83c9089e73b81c69dc1ecdf859fa84d2c500fb5f) |
---|---|
1/* 2 * USB Mass Storage Device emulation 3 * 4 * Copyright (c) 2006 CodeSourcery. 5 * Written by Paul Brook 6 * 7 * This code is licensed under the LGPL. 8 */ 9 10#include "qemu-common.h" 11#include "qemu-option.h" 12#include "qemu-config.h" 13#include "hw/usb.h" 14#include "hw/usb/desc.h" 15#include "hw/scsi.h" 16#include "ui/console.h" | 1/* 2 * USB Mass Storage Device emulation 3 * 4 * Copyright (c) 2006 CodeSourcery. 5 * Written by Paul Brook 6 * 7 * This code is licensed under the LGPL. 8 */ 9 10#include "qemu-common.h" 11#include "qemu-option.h" 12#include "qemu-config.h" 13#include "hw/usb.h" 14#include "hw/usb/desc.h" 15#include "hw/scsi.h" 16#include "ui/console.h" |
17#include "monitor.h" | 17#include "monitor/monitor.h" |
18#include "sysemu.h" 19#include "blockdev.h" 20 21//#define DEBUG_MSD 22 23#ifdef DEBUG_MSD 24#define DPRINTF(fmt, ...) \ 25do { printf("usb-msd: " fmt , ## __VA_ARGS__); } while (0) --- 707 unchanged lines hidden --- | 18#include "sysemu.h" 19#include "blockdev.h" 20 21//#define DEBUG_MSD 22 23#ifdef DEBUG_MSD 24#define DPRINTF(fmt, ...) \ 25do { printf("usb-msd: " fmt , ## __VA_ARGS__); } while (0) --- 707 unchanged lines hidden --- |