Skip to content

Commit

Permalink
blockdev: Move BlockInterfaceType from qemu-common.h to blockdev.h
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
  • Loading branch information
Markus Armbruster authored and kevmw committed Jan 31, 2011
1 parent 1383997 commit 904ebff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 6 additions & 0 deletions blockdev.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ void blockdev_auto_del(BlockDriverState *bs);

#define BLOCK_SERIAL_STRLEN 20

typedef enum {
IF_NONE,
IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN,
IF_COUNT
} BlockInterfaceType;

struct DriveInfo {
BlockDriverState *bdrv;
char *id;
Expand Down
6 changes: 0 additions & 6 deletions qemu-common.h
Original file line number Diff line number Diff line change
Expand Up @@ -274,12 +274,6 @@ typedef struct VirtIODevice VirtIODevice;

typedef uint64_t pcibus_t;

typedef enum {
IF_NONE,
IF_IDE, IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN,
IF_COUNT
} BlockInterfaceType;

void cpu_exec_init_all(unsigned long tb_size);

/* CPU save/load. */
Expand Down

0 comments on commit 904ebff

Please sign in to comment.