From 038263c38a6be27590a938d349873c7dbb310b89 Mon Sep 17 00:00:00 2001 From: Stricted Date: Sat, 19 Jun 2021 23:12:06 +0000 Subject: [PATCH] amlogic: usb: Remove extra parentheses Change-Id: Ide547d68899ef8150344b1f9d43e8db843317f63 --- drivers/amlogic/usb/phy/usbphy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/amlogic/usb/phy/usbphy.c b/drivers/amlogic/usb/phy/usbphy.c index a6bea85d42bf..41b3c505e40d 100644 --- a/drivers/amlogic/usb/phy/usbphy.c +++ b/drivers/amlogic/usb/phy/usbphy.c @@ -164,7 +164,7 @@ int clk_enable_usb_meson8(struct platform_device *pdev, #if 0 if (is_meson_m8m2_cpu() && (port_idx == USB_PORT_IDX_B)) { #endif - if ((port_idx == USB_PORT_IDX_B)) { + if (port_idx == USB_PORT_IDX_B) { adp_bc.d32 = peri->adp_bc; adp_bc.b.aca_enable = 1; peri->adp_bc = adp_bc.d32; -- 2.20.1