diff options
author | Blue Swirl | 2010-08-24 17:22:24 +0200 |
---|---|---|
committer | Blue Swirl | 2010-08-24 17:22:24 +0200 |
commit | 2446333cd5b5c985f6517dee7004e542ecacd21c (patch) | |
tree | 9646889006f9944dc5d530b73d35a6c3c30c239b /hw/gumstix.c | |
parent | Merge remote branch 'qemu-kvm/uq/master' into staging (diff) | |
download | qemu-2446333cd5b5c985f6517dee7004e542ecacd21c.tar.gz qemu-2446333cd5b5c985f6517dee7004e542ecacd21c.tar.xz qemu-2446333cd5b5c985f6517dee7004e542ecacd21c.zip |
Rearrange block headers
Changing block.h or blockdev.h resulted in recompiling most objects.
Move DriveInfo typedef and BlockInterfaceType enum definitions
to qemu-common.h and rearrange blockdev.h use to decrease churn.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/gumstix.c')
-rw-r--r-- | hw/gumstix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/gumstix.c b/hw/gumstix.c index c343a166e8..af8b464b88 100644 --- a/hw/gumstix.c +++ b/hw/gumstix.c @@ -38,6 +38,7 @@ #include "sysemu.h" #include "devices.h" #include "boards.h" +#include "blockdev.h" static const int sector_len = 128 * 1024; |