summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx31/sdma-imx31.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/imx31/sdma-imx31.c')
-rw-r--r--firmware/target/arm/imx31/sdma-imx31.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/imx31/sdma-imx31.c b/firmware/target/arm/imx31/sdma-imx31.c
index 40a43f8121..a877d5824b 100644
--- a/firmware/target/arm/imx31/sdma-imx31.c
+++ b/firmware/target/arm/imx31/sdma-imx31.c
@@ -40,9 +40,9 @@ static struct sdma_script_start_addrs script_info;
40/* Mask of channels with callback enabled */ 40/* Mask of channels with callback enabled */
41static unsigned long sdma_enabled_ints = 0; 41static unsigned long sdma_enabled_ints = 0;
42/* One channel control block per channel in physically mapped device RAM */ 42/* One channel control block per channel in physically mapped device RAM */
43static struct channel_control_block ccb_array[CH_NUM] DEVBSS_ATTR; 43static struct channel_control_block ccb_array[CH_NUM] NOCACHEBSS_ATTR;
44/* Channel 0 (command channel) data */ 44/* Channel 0 (command channel) data */
45static struct buffer_descriptor_extd c0_buffer_desc DEVBSS_ATTR; 45static struct buffer_descriptor_extd c0_buffer_desc NOCACHEBSS_ATTR;
46 46
47/* All SDMA channel interrupts are handled here. 47/* All SDMA channel interrupts are handled here.
48 * Dispatches lower channel numbers first (prioritized by SDMA API callers 48 * Dispatches lower channel numbers first (prioritized by SDMA API callers