diff options
author | Masahiro Yamada | 2017-10-13 19:21:56 +0900 |
---|---|---|
committer | Masahiro Yamada | 2017-10-15 22:32:24 +0900 |
commit | 4bb3dac77234b43ce188e2bcb6b439351bea5134 (patch) | |
tree | e527171eed7e7ce6888171dc2b31c5a6a351fcd4 /drivers/usb | |
parent | dd74b945af2e67791613dc98c6ce7a0058f3a72b (diff) |
usb: dwc3-uniphier: replace <common.h> with <linux/bitops.h>
Including <common.h> pulls in a lot of bloat. What this driver needs
is BIT(), so replace it with <linux/bitops.h>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/dwc3/dwc3-uniphier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/dwc3-uniphier.c b/drivers/usb/dwc3/dwc3-uniphier.c index 0d13770d40e..25b17a85d00 100644 --- a/drivers/usb/dwc3/dwc3-uniphier.c +++ b/drivers/usb/dwc3/dwc3-uniphier.c @@ -7,8 +7,8 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#include <common.h> #include <dm.h> +#include <linux/bitops.h> #include <linux/errno.h> #include <linux/io.h> #include <linux/sizes.h> |