diff options
author | Nicholas Krause | 2015-05-28 17:00:05 +0200 |
---|---|---|
committer | Tony Lindgren | 2015-06-02 00:01:51 +0200 |
commit | e3abe2556b2a689b28926cd1581f0b97e9d2afa4 (patch) | |
tree | cc1ed1c509d231ba84b4e411314662890ffec135 /arch/arm/mach-omap2/dma.c | |
parent | memory: omap-gpmc: Fix parsing of devices (diff) | |
download | kernel-qcow2-linux-e3abe2556b2a689b28926cd1581f0b97e9d2afa4.tar.gz kernel-qcow2-linux-e3abe2556b2a689b28926cd1581f0b97e9d2afa4.tar.xz kernel-qcow2-linux-e3abe2556b2a689b28926cd1581f0b97e9d2afa4.zip |
ARM: OMAP2+: Remove unnessary return statement from the void function, omap2_show_dma_caps
This removes the no longer required return statement at the end
of the void function, omap2_show_dma_cap due to no need for a
return statement due to this function always running successfully.
Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/dma.c')
-rw-r--r-- | arch/arm/mach-omap2/dma.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/dma.c b/arch/arm/mach-omap2/dma.c index e1a56d87599e..1ed4be184a29 100644 --- a/arch/arm/mach-omap2/dma.c +++ b/arch/arm/mach-omap2/dma.c @@ -117,7 +117,6 @@ static void omap2_show_dma_caps(void) u8 revision = dma_read(REVISION, 0) & 0xff; printk(KERN_INFO "OMAP DMA hardware revision %d.%d\n", revision >> 4, revision & 0xf); - return; } static unsigned configure_dma_errata(void) |