mx53: Fix mask for SATA reference clock

SATA_ALT_REF_CLK field corresponds to bits 1 and 2 of offset 0x180c.

Fix the mask for these bits.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
master
Fabio Estevam 13 years ago committed by Albert ARIBAUD
parent eae08eb2b5
commit 3f5f200bbe
  1. 2
      arch/arm/cpu/armv7/mx5/clock.c

@ -843,7 +843,7 @@ void mxc_set_sata_internal_clock(void)
set_usb_phy1_clk();
writel((readl(tmp_base) & (~0x7)) | 0x4, tmp_base);
writel((readl(tmp_base) & (~0x6)) | 0x4, tmp_base);
}
#endif

Loading…
Cancel
Save