Skip to content

Commit

Permalink
ARM: imx: Move anatop related from board file to anatop driver
Browse files Browse the repository at this point in the history
Move anatop related (For USB) from board file to anatop driver

Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
  • Loading branch information
Peter Chen authored and Shawn Guo committed Aug 22, 2013
1 parent 692c89a commit ddcb9aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 3 additions & 1 deletion arch/arm/mach-imx/anatop.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void imx_anatop_post_resume(void)
imx_anatop_enable_weak2p5(false);
}

void imx_anatop_usb_chrg_detect_disable(void)
static void imx_anatop_usb_chrg_detect_disable(void)
{
regmap_write(anatop, ANADIG_USB1_CHRG_DETECT,
BM_ANADIG_USB_CHRG_DETECT_EN_B
Expand Down Expand Up @@ -100,4 +100,6 @@ void __init imx_anatop_init(void)
pr_err("%s: failed to find imx6q-anatop regmap!\n", __func__);
return;
}

imx_anatop_usb_chrg_detect_disable();
}
1 change: 0 additions & 1 deletion arch/arm/mach-imx/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ extern void imx_gpc_restore_all(void);
extern void imx_anatop_init(void);
extern void imx_anatop_pre_suspend(void);
extern void imx_anatop_post_resume(void);
extern void imx_anatop_usb_chrg_detect_disable(void);
extern u32 imx_anatop_get_digprog(void);
extern int imx6q_set_lpm(enum mxc_cpu_pwr_mode mode);
extern void imx6q_set_chicken_bit(void);
Expand Down
5 changes: 0 additions & 5 deletions arch/arm/mach-imx/mach-imx6q.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,6 @@ static void __init imx6q_1588_init(void)
pr_err("failed to find fsl,imx6q-iomux-gpr regmap\n");

}
static void __init imx6q_usb_init(void)
{
imx_anatop_usb_chrg_detect_disable();
}

static void __init imx6q_init_machine(void)
{
Expand All @@ -268,7 +264,6 @@ static void __init imx6q_init_machine(void)

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

Expand Down

0 comments on commit ddcb9aa

Please sign in to comment.