From: Stricted Date: Sat, 19 Jun 2021 23:12:06 +0000 (+0000) Subject: amlogic: usb: Remove extra parentheses X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d2bdba581b80c901a1553b15349f1a8fc925c7a8;p=GitHub%2FLineageOS%2FG12%2Fandroid_kernel_amlogic_linux-4.9.git amlogic: usb: Remove extra parentheses Change-Id: Ide547d68899ef8150344b1f9d43e8db843317f63 --- 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;