diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2024-01-25 16:34:08 +0000 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2024-01-30 21:20:20 +0300 |
commit | 493bc2dbc16bbb0b9ac16badff5c31752bc224a9 (patch) | |
tree | 9a8e1be72d95654ba1530e78e1183ebd06f9abb3 /net | |
parent | be355a44ca69e119278dd5212886aaeac560ae59 (diff) |
misc: Clean up includes
This commit was created with scripts/clean-includes:
./scripts/clean-includes --git misc net/af-xdp.c plugins/*.c audio/pwaudio.c util/userfaultfd.c
All .c should include qemu/osdep.h first. The script performs three
related cleanups:
* Ensure .c files include qemu/osdep.h first.
* Including it in a .h is redundant, since the .c already includes
it. Drop such inclusions.
* Likewise, including headers qemu/osdep.h includes is redundant.
Drop these, too.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'net')
-rw-r--r-- | net/af-xdp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/af-xdp.c b/net/af-xdp.c index 6c65028fb0..38e600703a 100644 --- a/net/af-xdp.c +++ b/net/af-xdp.c @@ -13,7 +13,6 @@ #include "qemu/osdep.h" #include <bpf/bpf.h> -#include <inttypes.h> #include <linux/if_link.h> #include <linux/if_xdp.h> #include <net/if.h> |