From: Masahiro Yamada <yamada.masahiro@socionext.com> Date: Fri, 13 Oct 2017 10:21:56 +0000 (+0900) Subject: usb: dwc3-uniphier: replace <common.h> with <linux/bitops.h> X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=4bb3dac77234b43ce188e2bcb6b439351bea5134;p=project%2Fbcm63xx%2Fu-boot.git 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> --- diff --git a/drivers/usb/dwc3/dwc3-uniphier.c b/drivers/usb/dwc3/dwc3-uniphier.c index 0d13770d40..25b17a85d0 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>