9
0
Fork 0

clk: imx: clk-imx6ul: Fixed conditional for enabling USB phy clocks

Signed-off-by: Robin van der Gracht <robin@protonic.nl>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Robin van der Gracht 2017-03-03 10:05:39 +01:00 committed by Sascha Hauer
parent 7497685b05
commit da2ec36e7c
1 changed files with 1 additions and 1 deletions

View File

@ -392,7 +392,7 @@ static int imx6_ccm_probe(struct device_d *dev)
for (i = 0; i < ARRAY_SIZE(clks_init_on); i++)
clk_enable(clks[clks_init_on[i]]);
if (IS_ENABLED(CONFIG_USB_MXS_PHY)) {
if (IS_ENABLED(CONFIG_USB_IMX_PHY)) {
clk_enable(clks[IMX6UL_CLK_USBPHY1_GATE]);
clk_enable(clks[IMX6UL_CLK_USBPHY2_GATE]);
}