diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-26 18:17:16 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-01-29 15:07:24 +0000 |
commit | a4ab4792a70b7b0cb4bd3afe58e9213704b41460 (patch) | |
tree | 514208c2bde854321c85f6bd67e1d63e67259ed1 /hw/scsi/scsi-generic.c | |
parent | 97d5408f99d0c45b8142de0c5ef92d44ad876898 (diff) | |
download | qemu-a4ab4792a70b7b0cb4bd3afe58e9213704b41460.tar.gz qemu-a4ab4792a70b7b0cb4bd3afe58e9213704b41460.tar.bz2 qemu-a4ab4792a70b7b0cb4bd3afe58e9213704b41460.zip |
hw/scsi: 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-24-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'hw/scsi/scsi-generic.c')
-rw-r--r-- | hw/scsi/scsi-generic.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/hw/scsi/scsi-generic.c b/hw/scsi/scsi-generic.c index a4626f72c1..75a4127d3a 100644 --- a/hw/scsi/scsi-generic.c +++ b/hw/scsi/scsi-generic.c @@ -11,6 +11,7 @@ * */ +#include "qemu/osdep.h" #include "qemu-common.h" #include "qemu/error-report.h" #include "hw/scsi/scsi.h" @@ -31,10 +32,6 @@ do { printf("scsi-generic: " fmt , ## __VA_ARGS__); } while (0) #define BADF(fmt, ...) \ do { fprintf(stderr, "scsi-generic: " fmt , ## __VA_ARGS__); } while (0) -#include <stdio.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <unistd.h> #include <scsi/sg.h> #include "block/scsi.h" |