diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-26 18:17:30 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-01-29 15:07:25 +0000 |
commit | 0430891ce162b986c6e02a7729a942ecd2a32ca4 (patch) | |
tree | f8b5b31225f71bfcf808c359a3d61083a1deb9c1 /hw/input | |
parent | 18c86e2b9d85a89818f485c2cadafa6e3932e43a (diff) | |
download | qemu-0430891ce162b986c6e02a7729a942ecd2a32ca4.tar.gz qemu-0430891ce162b986c6e02a7729a942ecd2a32ca4.tar.bz2 qemu-0430891ce162b986c6e02a7729a942ecd2a32ca4.zip |
hw: 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-38-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'hw/input')
-rw-r--r-- | hw/input/adb.c | 1 | ||||
-rw-r--r-- | hw/input/hid.c | 1 | ||||
-rw-r--r-- | hw/input/lm832x.c | 1 | ||||
-rw-r--r-- | hw/input/pckbd.c | 1 | ||||
-rw-r--r-- | hw/input/ps2.c | 1 | ||||
-rw-r--r-- | hw/input/vmmouse.c | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/hw/input/adb.c b/hw/input/adb.c index 09eead96b6..c384856c13 100644 --- a/hw/input/adb.c +++ b/hw/input/adb.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 "hw/hw.h" #include "hw/input/adb.h" #include "ui/console.h" diff --git a/hw/input/hid.c b/hw/input/hid.c index 3221d2932b..a11e2bc0f2 100644 --- a/hw/input/hid.c +++ b/hw/input/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 "qemu/timer.h" diff --git a/hw/input/lm832x.c b/hw/input/lm832x.c index 530a6e01f5..539682cac8 100644 --- a/hw/input/lm832x.c +++ b/hw/input/lm832x.c @@ -18,6 +18,7 @@ * with this program; if not, see <http://www.gnu.org/licenses/>. */ +#include "qemu/osdep.h" #include "hw/hw.h" #include "hw/i2c/i2c.h" #include "qemu/timer.h" diff --git a/hw/input/pckbd.c b/hw/input/pckbd.c index ddac69df6f..1d932ec19f 100644 --- a/hw/input/pckbd.c +++ b/hw/input/pckbd.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 "hw/hw.h" #include "hw/isa/isa.h" #include "hw/i386/pc.h" diff --git a/hw/input/ps2.c b/hw/input/ps2.c index 79754cd35a..b6f0e8d8eb 100644 --- a/hw/input/ps2.c +++ b/hw/input/ps2.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 "hw/hw.h" #include "hw/input/ps2.h" #include "ui/console.h" diff --git a/hw/input/vmmouse.c b/hw/input/vmmouse.c index d7b1c76f58..6d15a887c6 100644 --- a/hw/input/vmmouse.c +++ b/hw/input/vmmouse.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 "hw/hw.h" #include "ui/console.h" #include "hw/input/ps2.h" |