diff options
author | Michael S. Tsirkin | 2018-05-03 21:50:48 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2018-06-01 18:20:38 +0200 |
commit | 463581a827ea8fd540ddf1d4260a7610d17f1b2e (patch) | |
tree | a42c3a7c1fda5a276e4fee2662ccb9ffa91fdfa2 /hw/usb/dev-bluetooth.c | |
parent | sd: fix up include (diff) | |
download | qemu-463581a827ea8fd540ddf1d4260a7610d17f1b2e.tar.gz qemu-463581a827ea8fd540ddf1d4260a7610d17f1b2e.tar.xz qemu-463581a827ea8fd540ddf1d4260a7610d17f1b2e.zip |
usb: use local path for local headers
When pulling in headers that are in the same directory as the C file (as
opposed to one in include/), we should use its relative path, without a
directory.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw/usb/dev-bluetooth.c')
-rw-r--r-- | hw/usb/dev-bluetooth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/dev-bluetooth.c b/hw/usb/dev-bluetooth.c index 0bbceaea0b..eac7365b0a 100644 --- a/hw/usb/dev-bluetooth.c +++ b/hw/usb/dev-bluetooth.c @@ -22,7 +22,7 @@ #include "qemu-common.h" #include "qemu/error-report.h" #include "hw/usb.h" -#include "hw/usb/desc.h" +#include "desc.h" #include "sysemu/bt.h" #include "hw/bt.h" |