Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 96696a9d authored by Thomas Hebb's avatar Thomas Hebb Committed by Kishon Vijay Abraham I
Browse files

phy: berlin-usb: fix divider for BG2CD



The marvell,berlin2cd-usb-phy compatible incorrectly sets the PLL
divider to BG2's value instead of BG2CD/BG2Q's. Change it to the right
value.

Signed-off-by: default avatarThomas Hebb <tommyhebb@gmail.com>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent 1c4b1d1d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -106,8 +106,8 @@
static const u32 phy_berlin_pll_dividers[] = {
	/* Berlin 2 */
	CLK_REF_DIV(0xc) | FEEDBACK_CLK_DIV(0x54),
	/* Berlin 2CD */
	CLK_REF_DIV(0x6) | FEEDBACK_CLK_DIV(0x55),
	/* Berlin 2CD/Q */
	CLK_REF_DIV(0xc) | FEEDBACK_CLK_DIV(0x54),
};

struct phy_berlin_usb_priv {