]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ARM: OMAP2+: Remove duplicated DMA channel definitions
authorJarkko Nikula <jarkko.nikula@bitmer.com>
Sat, 15 Jun 2013 08:31:03 +0000 (11:31 +0300)
committerTony Lindgren <tony@atomide.com>
Tue, 18 Jun 2013 07:11:59 +0000 (00:11 -0700)
commit9bd5b2753964e69edef4dac66ea9b21ac2b3d149
tree402427a75a3930848b9adab08c503620e9e2d3ea
parent50a43f0fa9eb1ff8da930f6254bc16519e827922
ARM: OMAP2+: Remove duplicated DMA channel definitions

Many DMA channel definitions in arch/arm/mach-omap2/dma.h have been moved or
redefined in drivers without removing them from dma.h. Remove those with a
script below:

egrep '#define OMAP.*DMA' arch/arm/mach-omap2/dma.h \
|cut -f 1 |cut -d ' ' -f 1-2 | while read -r i; do \
if [ `git grep -c "$i" |wc -l` -gt 1 ]; then \
echo "removing" $i; \
sed -i "/${i}/d" arch/arm/mach-omap2/dma.h; \
fi; \
done

Signed-off-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/dma.h