| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH] MIPS: Define dummy MAX_DMA_CHANNELS to fix build failure |
| From: | Namhyung Kim <namhyung@gmail.com> |
| Date: | Thu, 21 Oct 2010 23:57:59 +0900 |
| Cc: | linux-mips@linux-mips.org, linux-kernel@vger.kernel.org |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=ssajqTeYKKvtmFXcJTRdq6rzrXIvnFu/lnbWiTehq2o=; b=vKtCRGjSctlq1myg/qgKDNu3OqvuU2GqHoveqIsyANpIKxSDPYBeD9WQnCzGIr4Yik b6hZ1kHKkwnnzY9FXk8nt1woIB/ayMQQ45/MTrcGlM63IHSmFJooxuTDa7TuK1ExDyMY lM2/54VxVWz4o96Zcu5h7BGrXvqQ0QX3StjvE= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=LMMcBW31ccYlgPxQKXQkCS44Dt4uR9DYNrW/nKHP5UyUe36yNiQHNsicQufbQXjw7A FuHRozE5W1X+YdHWoPN5jHDjd/riGLgG7HRM4ulI3BqV6Oech3uT+u7gFu2k2e4VXogT V6ZDBLNDbLWJQyQMe0r/VRGXm6YNPv2vLoaro= |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
allmodconfig build failes like following: CC [M] sound/oss/soundcard.o sound/oss/soundcard.c:68: error: 'MAX_DMA_CHANNELS' undeclared here (not in a function) make[3]: *** [sound/oss/soundcard.o] Error 1 make[2]: *** [sound/oss] Error 2 make[1]: *** [sub-make] Error 2 make: *** [all] Error 2 Signed-off-by: Namhyung Kim <namhyung@gmail.com> --- arch/mips/include/asm/dma.h | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/mips/include/asm/dma.h b/arch/mips/include/asm/dma.h index 1353c81..e0d498c 100644 --- a/arch/mips/include/asm/dma.h +++ b/arch/mips/include/asm/dma.h @@ -74,7 +74,9 @@ * */ -#ifndef CONFIG_GENERIC_ISA_DMA_SUPPORT_BROKEN +#ifdef CONFIG_GENERIC_ISA_DMA_SUPPORT_BROKEN +#define MAX_DMA_CHANNELS 0 +#else #define MAX_DMA_CHANNELS 8 #endif -- 1.7.0.4 |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH v2 22/22] bitops: remove minix bitops from asm/bitops.h, Akinobu Mita |
|---|---|
| Next by Date: | Re: [PATCH v2 22/22] bitops: remove minix bitops from asm/bitops.h, Arnd Bergmann |
| Previous by Thread: | [PATCH v2 22/22] bitops: remove minix bitops from asm/bitops.h, Akinobu Mita |
| Next by Thread: | [PATCH v3 8/9] MIPS: Honor L2 bypass bit, Kevin Cernekee |
| Indexes: | [Date] [Thread] [Top] [All Lists] |