diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-11-08 18:06:37 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-04-04 00:31:45 +0100 |
commit | 0ef64986d69602ba8df933c62d0b6d6edfaf0557 (patch) | |
tree | f4a5877938564081f8a35319938236274955c838 /arch/arm/mach-omap1 | |
parent | 64a2dc3d3de4235eb73921d870a674a23d9888f0 (diff) | |
download | talos-obmc-linux-0ef64986d69602ba8df933c62d0b6d6edfaf0557.tar.gz talos-obmc-linux-0ef64986d69602ba8df933c62d0b6d6edfaf0557.zip |
ARM: omap: dma: get rid of errata global
There's no need for this to be a global variable; move it into the
errata configuration function instead.
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-omap1')
-rw-r--r-- | arch/arm/mach-omap1/dma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap1/dma.c b/arch/arm/mach-omap1/dma.c index b680db7a35d4..c979e3f88bbb 100644 --- a/arch/arm/mach-omap1/dma.c +++ b/arch/arm/mach-omap1/dma.c @@ -33,7 +33,6 @@ #define OMAP1_DMA_BASE (0xfffed800) #define OMAP1_LOGICAL_DMA_CH_COUNT 17 -static u32 errata; static u32 enable_1510_mode; static const struct omap_dma_reg reg_map[] = { @@ -244,8 +243,9 @@ static void omap1_show_dma_caps(void) return; } -static u32 configure_dma_errata(void) +static unsigned configure_dma_errata(void) { + unsigned errata = 0; /* * Erratum 3.2/3.3: sometimes 0 is returned if CSAC/CDAC is |