diff options
| author | Alex Bennée <alex.bennee@linaro.org> | 2024-12-09 10:06:35 +0000 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-14 00:16:20 +0100 |
| commit | b7bd67fb31d0c97f7b9a6f83d6c786cbee5c09b8 (patch) | |
| tree | db3826b7ac2fc738e8fb9a074ffdaf14b5c6f5d7 /hw/net/can/ctucan_pci.c | |
| parent | 3a25075ecef85adca5ab5b4e2486955b9d7a23ce (diff) | |
| download | focaccia-qemu-b7bd67fb31d0c97f7b9a6f83d6c786cbee5c09b8.tar.gz focaccia-qemu-b7bd67fb31d0c97f7b9a6f83d6c786cbee5c09b8.zip | |
hw/net/can: clean-up unnecessary includes
The event_notifier, thread and socket includes look like copy and paste of standard headers. None of the canbus devices use chardev although some relied on chardev to bring in bitops and byte swapping headers. In this case include them directly. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Acked-by: Pavel Pisa <pisa@cmp.felk.cvut.cz> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-ID: <20241209100635.93243-1-alex.bennee@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'hw/net/can/ctucan_pci.c')
| -rw-r--r-- | hw/net/can/ctucan_pci.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/net/can/ctucan_pci.c b/hw/net/can/ctucan_pci.c index 65f1f82303..a8c77b9194 100644 --- a/hw/net/can/ctucan_pci.c +++ b/hw/net/can/ctucan_pci.c @@ -27,12 +27,8 @@ */ #include "qemu/osdep.h" -#include "qemu/event_notifier.h" #include "qemu/module.h" -#include "qemu/thread.h" -#include "qemu/sockets.h" #include "qapi/error.h" -#include "chardev/char.h" #include "hw/irq.h" #include "hw/pci/pci_device.h" #include "hw/qdev-properties.h" |