diff options
author | Jarkko Nikula <jarkko.nikula@bitmer.com> | 2013-06-15 08:31:07 (GMT) |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-06-18 07:12:34 (GMT) |
commit | bf2920aa57f339b3901172ca35fbbf303acf8e16 (patch) | |
tree | 11236740287c6f8e8aa3759c1d40422a378d9260 /crypto/aead.c | |
parent | c821c4628a50da66ff9885bf7cd3df965a8464a1 (diff) | |
download | linux-fsl-qoriq-bf2920aa57f339b3901172ca35fbbf303acf8e16.tar.xz |
ARM: OMAP1: Remove duplicated DMA channel definitions
Similarly than with OMAP2 there are many DMA channel definitions that have
been moved or redefined in drivers using them and we can remove them from
dma.h.
There is exception with MMC that arch/arm/mach-omap1/devices.c is using
MMC DMA channel definitions for setting platform data but those can be well
replaced with numeric values.
Remove dma.h include from arch/arm/mach-omap1/devices.c and use a script
below for dropping duplicated definitions and for replacing definitions
with DMA channel numbers.
grep '#define OMAP_DMA' arch/arm/mach-omap1/dma.h | while read -r i; do \
DDEF=`echo $i |cut -d ' ' -f 1-2`; \
DEF=`echo $DDEF |cut -d ' ' -f 2`; \
CH=`echo $i |cut -d ' ' -f 3`; \
if [ `git grep -c "$DDEF" |wc -l` -gt 1 ]; then \
echo "removing" $DEF; \
sed -i "s/${DEF}/${CH}/" arch/arm/mach-omap1/devices.c; \
sed -i "/${DDEF}/d" arch/arm/mach-omap1/dma.h; \
fi; \
done
Signed-off-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'crypto/aead.c')
0 files changed, 0 insertions, 0 deletions