Commit 187e5f26 authored by Shawn Guo's avatar Shawn Guo Committed by Sascha Hauer

ARM: mxc: imx-dma on imx25 has no other TO version but TO1

The imx25 sdma script only gets TO1 version, so there is no need
to encode "to1" in the variable name.
Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
Signed-off-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
parent ee8814db
...@@ -77,7 +77,7 @@ static struct platform_device __init __maybe_unused *imx_add_imx_dma(void) ...@@ -77,7 +77,7 @@ static struct platform_device __init __maybe_unused *imx_add_imx_dma(void)
} }
#ifdef CONFIG_ARCH_MX25 #ifdef CONFIG_ARCH_MX25
static struct sdma_script_start_addrs addr_imx25_to1 = { static struct sdma_script_start_addrs addr_imx25 = {
.ap_2_ap_addr = 729, .ap_2_ap_addr = 729,
.uart_2_mcu_addr = 904, .uart_2_mcu_addr = 904,
.per_2_app_addr = 1255, .per_2_app_addr = 1255,
...@@ -165,7 +165,7 @@ static int __init imxXX_add_imx_dma(void) ...@@ -165,7 +165,7 @@ static int __init imxXX_add_imx_dma(void)
#if defined(CONFIG_SOC_IMX25) #if defined(CONFIG_SOC_IMX25)
if (cpu_is_mx25()) { if (cpu_is_mx25()) {
imx25_imx_sdma_data.pdata.script_addrs = &addr_imx25_to1; imx25_imx_sdma_data.pdata.script_addrs = &addr_imx25;
ret = imx_add_imx_sdma(&imx25_imx_sdma_data); ret = imx_add_imx_sdma(&imx25_imx_sdma_data);
} else } else
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment