Skip to content

Commit

Permalink
Merge branch 'mxs/fixes-for-3.5' of git://git.linaro.org/people/shawn…
Browse files Browse the repository at this point in the history
…guo/linux-2.6 into fixes

* 'mxs/fixes-for-3.5' of git://git.linaro.org/people/shawnguo/linux-2.6:
  ARM: apx4devkit: fix FEC enabling PHY clock

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
  • Loading branch information
Arnd Bergmann committed Jul 5, 2012
2 parents 8df0fd9 + c46d291 commit 8d11144
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions arch/arm/mach-mxs/mach-apx4devkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,16 @@ static int apx4devkit_phy_fixup(struct phy_device *phy)
return 0;
}

static void __init apx4devkit_fec_phy_clk_enable(void)
{
struct clk *clk;

/* Enable fec phy clock */
clk = clk_get_sys("enet_out", NULL);
if (!IS_ERR(clk))
clk_prepare_enable(clk);
}

static void __init apx4devkit_init(void)
{
mx28_soc_init();
Expand All @@ -225,6 +235,7 @@ static void __init apx4devkit_init(void)
phy_register_fixup_for_uid(PHY_ID_KS8051, MICREL_PHY_ID_MASK,
apx4devkit_phy_fixup);

apx4devkit_fec_phy_clk_enable();
mx28_add_fec(0, &mx28_fec_pdata);

mx28_add_mxs_mmc(0, &apx4devkit_mmc_pdata);
Expand Down

0 comments on commit 8d11144

Please sign in to comment.