mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-17 23:37:01 +00:00
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>
This commit is contained in:
parent
eae08eb2b5
commit
3f5f200bbe
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue