summaryrefslogtreecommitdiff
path: root/drivers/usb/gadget/function/dfu.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2023-03-20 09:03:43 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2023-03-20 16:05:12 +0100
commit253e3e4f47bfbc2919dbe9e0dce35f054009cdb6 (patch)
tree722b728d788adc24c97c1d367255355cb14486a1 /drivers/usb/gadget/function/dfu.c
parent37ea6d0f30d45b4ad5539a9748ebf5e4e5635132 (diff)
downloadbarebox-253e3e4f47bfbc2919dbe9e0dce35f054009cdb6.tar.gz
usb: move include files to place where Linux has them
For easier patch merging and comparison with Linux move the usb gadget files to where Linux has them. For now do a plain git mv include/usb include/linux/usb, eventhough there might be some files which are purely barebox specific. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/usb/gadget/function/dfu.c')
-rw-r--r--drivers/usb/gadget/function/dfu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/gadget/function/dfu.c b/drivers/usb/gadget/function/dfu.c
index 0b7ca82c4a..930a10b766 100644
--- a/drivers/usb/gadget/function/dfu.c
+++ b/drivers/usb/gadget/function/dfu.c
@@ -26,15 +26,15 @@
#include <dma.h>
#include <asm/byteorder.h>
-#include <usb/composite.h>
+#include <linux/usb/composite.h>
#include <linux/types.h>
#include <linux/list.h>
-#include <usb/gadget.h>
+#include <linux/usb/gadget.h>
#include <linux/stat.h>
#include <libfile.h>
#include <linux/err.h>
-#include <usb/ch9.h>
-#include <usb/dfu.h>
+#include <linux/usb/ch9.h>
+#include <linux/usb/dfu.h>
#include <config.h>
#include <common.h>
#include <malloc.h>