diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-03-26 18:07:17 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-03-26 18:07:17 -0400 |
commit | 53ad835ce7050dc3a3b3343fb07636db86783e26 (patch) | |
tree | 26d42c4b8ab4c1548906112d1ad3ffddf5f1042b /arch/arm/mach-ixp4xx | |
parent | e1a4018f939e9ff51712183c1fdc6775e5f181a1 (diff) |
Revert "ARM: ixp4xx: Make dma_set_coherent_mask common, correct implementation"
This reverts commit bfdad565ae0a61ac943974b8ae61ec0ed55ceb04.
The patch turned out to be incorrect, and will be replaced
with a correct patch.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-ixp4xx')
-rw-r--r-- | arch/arm/mach-ixp4xx/common-pci.c | 9 | ||||
-rw-r--r-- | arch/arm/mach-ixp4xx/common.c | 12 |
2 files changed, 9 insertions, 12 deletions
diff --git a/arch/arm/mach-ixp4xx/common-pci.c b/arch/arm/mach-ixp4xx/common-pci.c index 055d81694a17..200970d56f6d 100644 --- a/arch/arm/mach-ixp4xx/common-pci.c +++ b/arch/arm/mach-ixp4xx/common-pci.c | |||
@@ -481,5 +481,14 @@ int ixp4xx_setup(int nr, struct pci_sys_data *sys) | |||
481 | return 1; | 481 | return 1; |
482 | } | 482 | } |
483 | 483 | ||
484 | int dma_set_coherent_mask(struct device *dev, u64 mask) | ||
485 | { | ||
486 | if (mask >= SZ_64M - 1) | ||
487 | return 0; | ||
488 | |||
489 | return -EIO; | ||
490 | } | ||
491 | |||
484 | EXPORT_SYMBOL(ixp4xx_pci_read); | 492 | EXPORT_SYMBOL(ixp4xx_pci_read); |
485 | EXPORT_SYMBOL(ixp4xx_pci_write); | 493 | EXPORT_SYMBOL(ixp4xx_pci_write); |
494 | EXPORT_SYMBOL(dma_set_coherent_mask); | ||
diff --git a/arch/arm/mach-ixp4xx/common.c b/arch/arm/mach-ixp4xx/common.c index df82a2b4a546..6d68aed6548a 100644 --- a/arch/arm/mach-ixp4xx/common.c +++ b/arch/arm/mach-ixp4xx/common.c | |||
@@ -31,7 +31,6 @@ | |||
31 | #include <linux/gpio.h> | 31 | #include <linux/gpio.h> |
32 | #include <linux/cpu.h> | 32 | #include <linux/cpu.h> |
33 | #include <linux/sched_clock.h> | 33 | #include <linux/sched_clock.h> |
34 | #include <linux/pci.h> | ||
35 | 34 | ||
36 | #include <mach/udc.h> | 35 | #include <mach/udc.h> |
37 | #include <mach/hardware.h> | 36 | #include <mach/hardware.h> |
@@ -579,17 +578,6 @@ void ixp4xx_restart(enum reboot_mode mode, const char *cmd) | |||
579 | } | 578 | } |
580 | } | 579 | } |
581 | 580 | ||
582 | int dma_set_coherent_mask(struct device *dev, u64 mask) | ||
583 | { | ||
584 | if (dev_is_pci(dev) && mask >= SZ_64M) | ||
585 | return -EIO; | ||
586 | |||
587 | dev->coherent_dma_mask = mask; | ||
588 | |||
589 | return 0; | ||
590 | } | ||
591 | EXPORT_SYMBOL(dma_set_coherent_mask); | ||
592 | |||
593 | #ifdef CONFIG_IXP4XX_INDIRECT_PCI | 581 | #ifdef CONFIG_IXP4XX_INDIRECT_PCI |
594 | /* | 582 | /* |
595 | * In the case of using indirect PCI, we simply return the actual PCI | 583 | * In the case of using indirect PCI, we simply return the actual PCI |