| To: | linux-mips@linux-mips.org, ralf@linux-mips.org |
|---|---|
| Subject: | [PATCH 07/15] MIPS: Netlogic: Fix DMA zone selection for 64-bit |
| From: | "Jayachandran C" <jchandra@broadcom.com> |
| Date: | Wed, 31 Oct 2012 18:31:33 +0530 |
| Cc: | "Jayachandran C" <jchandra@broadcom.com> |
| In-reply-to: | <cover.1351688140.git.jchandra@broadcom.com> |
| List-archive: | <http://www.linux-mips.org/archives/linux-mips/> |
| List-help: | <mailto:ecartis@linux-mips.org?Subject=help> |
| List-id: | linux-mips <linux-mips.eddie.linux-mips.org> |
| List-owner: | <mailto:ralf@linux-mips.org> |
| List-post: | <mailto:linux-mips@linux-mips.org> |
| List-software: | Ecartis version 1.0.0 |
| List-subscribe: | <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips> |
| List-unsubscribe: | <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips> |
| References: | <cover.1351688140.git.jchandra@broadcom.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
Fix Kconfig for both XLR and XLP to select ZONE_DMA32 (instead of ZONE_DMA)
in case of 64-bit compilation. This can be used for devices that can only
do DMA to 32-bit address. ZONE_DMA is not useful on XLR or XLP.
Signed-off-by: Jayachandran C <jchandra@broadcom.com>
---
arch/mips/Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index 346b44d..890ae91 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -800,7 +800,7 @@ config NLM_XLR_BOARD
select CSRC_R4K
select IRQ_CPU
select ARCH_SUPPORTS_MSI
- select ZONE_DMA if 64BIT
+ select ZONE_DMA32 if 64BIT
select SYNC_R4K
select SYS_HAS_EARLY_PRINTK
select USB_ARCH_HAS_OHCI if USB_SUPPORT
@@ -828,7 +828,7 @@ config NLM_XLP_BOARD
select CEVT_R4K
select CSRC_R4K
select IRQ_CPU
- select ZONE_DMA if 64BIT
+ select ZONE_DMA32 if 64BIT
select SYNC_R4K
select SYS_HAS_EARLY_PRINTK
select USE_OF
--
1.7.9.5
|
| Previous by Date: | [PATCH 08/15] MIPS: Netlogic: Fix interrupt table entry init, Jayachandran C |
|---|---|
| Next by Date: | [PATCH 14/15] MIPS: Netlogic: PIC IRQ handling update for multi-chip, Jayachandran C |
| Previous by Thread: | [PATCH 08/15] MIPS: Netlogic: Fix interrupt table entry init, Jayachandran C |
| Next by Thread: | [PATCH 14/15] MIPS: Netlogic: PIC IRQ handling update for multi-chip, Jayachandran C |
| Indexes: | [Date] [Thread] [Top] [All Lists] |