mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-30 08:31:03 +00:00
imx: mx6sx: Fix issue in LCDIF clock enablement
Wrong checking for the base_addr paramter with LCDIF1 and LCDIF2. Always enter the -EINVAL return. Signed-off-by: Ye Li <ye.li@nxp.com> Reviewed-by: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
6967c97fdb
commit
9655ebdd50
1 changed files with 2 additions and 2 deletions
|
@ -742,8 +742,8 @@ int enable_lcdif_clock(u32 base_addr)
|
|||
u32 lcdif_clk_sel_mask, lcdif_ccgr3_mask;
|
||||
|
||||
if (is_cpu_type(MXC_CPU_MX6SX)) {
|
||||
if ((base_addr == LCDIF1_BASE_ADDR) ||
|
||||
(base_addr == LCDIF2_BASE_ADDR)) {
|
||||
if ((base_addr != LCDIF1_BASE_ADDR) &&
|
||||
(base_addr != LCDIF2_BASE_ADDR)) {
|
||||
puts("Wrong LCD interface!\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue