diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-26 18:17:05 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-01-29 15:07:23 +0000 |
commit | 8ef94f0bc9167f246b41cb1188bf80dcd84b49fe (patch) | |
tree | f6f3aee82de30381b9bda602c9290326ee7862e8 /hw/gpio | |
parent | e2e5e114624ac1a46ce9e23975d5dbf5837f4c86 (diff) |
arm: 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-13-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'hw/gpio')
-rw-r--r-- | hw/gpio/imx_gpio.c | 1 | ||||
-rw-r--r-- | hw/gpio/pl061.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/hw/gpio/imx_gpio.c b/hw/gpio/imx_gpio.c index a6d7cab7dc..ed7e247f56 100644 --- a/hw/gpio/imx_gpio.c +++ b/hw/gpio/imx_gpio.c @@ -17,6 +17,7 @@ * with this program; if not, see <http://www.gnu.org/licenses/>. */ +#include "qemu/osdep.h" #include "hw/gpio/imx_gpio.h" #ifndef DEBUG_IMX_GPIO diff --git a/hw/gpio/pl061.c b/hw/gpio/pl061.c index 4ba730b476..e5a696ef43 100644 --- a/hw/gpio/pl061.c +++ b/hw/gpio/pl061.c @@ -8,6 +8,7 @@ * This code is licensed under the GPL. */ +#include "qemu/osdep.h" #include "hw/sysbus.h" //#define DEBUG_PL061 1 |