diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-10-30 06:12:46 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-11-20 09:58:56 -0500 |
commit | c08f1495c886f70f99af7fdcbabe612b31b97d4a (patch) | |
tree | d4e82367e3f313aa677ff1fdb14d35d387c9e6da /arch/arm/plat-orion | |
parent | dd2c57b822bc0fc999f95c57933e4c597e765b0a (diff) |
arm: plat-orion: remove unused orion_xor_init_channels()
Now that xor0 and xor1 are registered in a single driver manner, the
orion_xor_init_channels() function has become useless.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'arch/arm/plat-orion')
-rw-r--r-- | arch/arm/plat-orion/common.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/arch/arm/plat-orion/common.c b/arch/arm/plat-orion/common.c index afbbb97937ea..c6e6666986ff 100644 --- a/arch/arm/plat-orion/common.c +++ b/arch/arm/plat-orion/common.c | |||
@@ -606,26 +606,6 @@ void __init orion_wdt_init(void) | |||
606 | ****************************************************************************/ | 606 | ****************************************************************************/ |
607 | static u64 orion_xor_dmamask = DMA_BIT_MASK(32); | 607 | static u64 orion_xor_dmamask = DMA_BIT_MASK(32); |
608 | 608 | ||
609 | void __init orion_xor_init_channels( | ||
610 | struct mv_xor_platform_data *orion_xor0_data, | ||
611 | struct platform_device *orion_xor0_channel, | ||
612 | struct mv_xor_platform_data *orion_xor1_data, | ||
613 | struct platform_device *orion_xor1_channel) | ||
614 | { | ||
615 | /* | ||
616 | * two engines can't do memset simultaneously, this limitation | ||
617 | * satisfied by removing memset support from one of the engines. | ||
618 | */ | ||
619 | dma_cap_set(DMA_MEMCPY, orion_xor0_data->cap_mask); | ||
620 | dma_cap_set(DMA_XOR, orion_xor0_data->cap_mask); | ||
621 | platform_device_register(orion_xor0_channel); | ||
622 | |||
623 | dma_cap_set(DMA_MEMCPY, orion_xor1_data->cap_mask); | ||
624 | dma_cap_set(DMA_MEMSET, orion_xor1_data->cap_mask); | ||
625 | dma_cap_set(DMA_XOR, orion_xor1_data->cap_mask); | ||
626 | platform_device_register(orion_xor1_channel); | ||
627 | } | ||
628 | |||
629 | /***************************************************************************** | 609 | /***************************************************************************** |
630 | * XOR0 | 610 | * XOR0 |
631 | ****************************************************************************/ | 611 | ****************************************************************************/ |