diff options
author | Lukasz Majewski | 2018-11-23 17:36:19 +0100 |
---|---|---|
committer | Marek Vasut | 2018-12-14 17:59:08 +0100 |
commit | 916fa097997a5e1b70768ce944de28e038d4bebf (patch) | |
tree | b12672e9413e8a44117984d84416ba4c400356f3 /include/linux/usb | |
parent | bb00a015d624f683c66c9e30341f93b678d03d2e (diff) |
usb: composite: Move bitmap related operations to ./include/linux/bitmap.h
The BITMAP related operations can now be moved to ./include/linux/bitmap.h
file to mimic the Linux kernel directory tree.
This change also allows to remove the lin_gadget_compat.h header file
(which is a legacy code only for composite U-boot layer).
It was also possible to remove #includes from several USB gadget drivers.
Signed-off-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Stefan Agner <stefan.agner@toradex.com>
Diffstat (limited to 'include/linux/usb')
-rw-r--r-- | include/linux/usb/composite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/usb/composite.h b/include/linux/usb/composite.h index 30c464ce39d..a49a66f2f82 100644 --- a/include/linux/usb/composite.h +++ b/include/linux/usb/composite.h @@ -24,7 +24,7 @@ #include <common.h> #include <linux/usb/ch9.h> #include <linux/usb/gadget.h> -#include <usb/lin_gadget_compat.h> +#include <linux/bitmap.h> /* * USB function drivers should return USB_GADGET_DELAYED_STATUS if they |