diff options
author | Tony Lin <tony.lin@freescale.com> | 2011-09-02 13:30:34 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-07-20 13:15:54 +0800 |
commit | 6dbc961b0a97e47d19bf76afbc26a281c28a9fa7 (patch) | |
tree | b6f0d346ba65a863c22283087c27b7b9b559e599 /arch | |
parent | 4bd2adf35782aa7f40277cbfd3be01ff6133241c (diff) |
ENGR00155890 [mx6q] code clean up
remove unnecessary '\'
Signed-off-by: Tony Lin <tony.lin@freescale.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-mx6/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mx6/clock.c b/arch/arm/mach-mx6/clock.c index 4a56fd640ee8..0ccae284bb07 100644 --- a/arch/arm/mach-mx6/clock.c +++ b/arch/arm/mach-mx6/clock.c @@ -1052,7 +1052,7 @@ static int _clk_axi_set_parent(struct clk *clk, struct clk *parent) /* Set the AXI_ALT_SEL mux. */ reg = __raw_readl(MXC_CCM_CBCDR) & ~MXC_CCM_CBCDR_AXI_ALT_SEL_MASK; - reg = ((mux - 1) << MXC_CCM_CBCDR_AXI_ALT_SEL_OFFSET);\ + reg = ((mux - 1) << MXC_CCM_CBCDR_AXI_ALT_SEL_OFFSET); __raw_writel(reg, MXC_CCM_CBCDR); /* Set the AXI_SEL mux */ |