summaryrefslogtreecommitdiff
path: root/drivers/staging/r8188eu/include/usb_ops.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-07-30 16:39:21 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-07-30 16:46:56 +0200
commit78f2b22efc8f7649dcde44143e78149457f1162c (patch)
tree0aaebb9986329ad11ad26dd71eaaa2234162138c /drivers/staging/r8188eu/include/usb_ops.h
parent86949b521fa4e4c88e6ff7be6a1ce2c7c064a0f0 (diff)
staging: r8188eu: fix include directory mess
The driver seems to want to include a specific directory for all include files on the build path, but that breaks when trying to build only the module directory, or when building with "O=" option. Fix this up by making all includes for the driver be relative locations. Reported-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20210730144227.1770212-1-gregkh@linuxfoundation.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/r8188eu/include/usb_ops.h')
-rw-r--r--drivers/staging/r8188eu/include/usb_ops.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/r8188eu/include/usb_ops.h b/drivers/staging/r8188eu/include/usb_ops.h
index 6267d0999400..273bc2705558 100644
--- a/drivers/staging/r8188eu/include/usb_ops.h
+++ b/drivers/staging/r8188eu/include/usb_ops.h
@@ -4,9 +4,9 @@
#ifndef __USB_OPS_H_
#define __USB_OPS_H_
-#include <osdep_service.h>
-#include <drv_types.h>
-#include <osdep_intf.h>
+#include "osdep_service.h"
+#include "drv_types.h"
+#include "osdep_intf.h"
#define REALTEK_USB_VENQT_READ 0xC0
#define REALTEK_USB_VENQT_WRITE 0x40
@@ -21,7 +21,7 @@ enum {
#define MAX_VENDOR_REQ_CMD_SIZE 254 /* 8188cu SIE Support */
#define MAX_USB_IO_CTL_SIZE (MAX_VENDOR_REQ_CMD_SIZE + ALIGNMENT_UNIT)
-#include <usb_ops_linux.h>
+#include "usb_ops_linux.h"
void rtl8188eu_set_hw_type(struct adapter *padapter);
#define hal_set_hw_type rtl8188eu_set_hw_type