Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 340603
b: refs/heads/master
c: d6e0d9f
h: refs/heads/master
i:
  340601: feada64
  340599: ce1b6ea
v: v3
  • Loading branch information
Frank Li authored and David S. Miller committed Nov 1, 2012
1 parent b1f4006 commit dd302fc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7629838ca33adf8d576d9e4a9d31df4f3b3bc258
refs/heads/master: d6e0d9fcbb01edc7a342b15f077a217d46f3b608
12 changes: 12 additions & 0 deletions trunk/arch/arm/mach-imx/mach-imx6q.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,17 @@ static void __init imx6q_sabrelite_init(void)
imx6q_sabrelite_cko1_setup();
}

static void __init imx6q_1588_init(void)
{
struct regmap *gpr;

gpr = syscon_regmap_lookup_by_compatible("fsl,imx6q-iomuxc-gpr");
if (!IS_ERR(gpr))
regmap_update_bits(gpr, 0x4, 1 << 21, 1 << 21);
else
pr_err("failed to find fsl,imx6q-iomux-gpr regmap\n");

}
static void __init imx6q_usb_init(void)
{
struct regmap *anatop;
Expand Down Expand Up @@ -153,6 +164,7 @@ static void __init imx6q_init_machine(void)

imx6q_pm_init();
imx6q_usb_init();
imx6q_1588_init();
}

static struct cpuidle_driver imx6q_cpuidle_driver = {
Expand Down

0 comments on commit dd302fc

Please sign in to comment.