diff mbox

[2/4] sunhme: cleanup conditional on CONFIG_SBUS

Message ID 1294261427-26104-2-git-send-email-sam@ravnborg.org
State Deferred
Delegated to: David Miller
Headers show

Commit Message

Sam Ravnborg Jan. 5, 2011, 9:03 p.m. UTC
sparc has always SBUS defined.
So there is no need to have #ifdef CONFIG_SBUS within
code that is SPARC only.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
---
 drivers/net/sunhme.c |    9 +--------
 1 files changed, 1 insertions(+), 8 deletions(-)

Comments

David Miller Jan. 6, 2011, 10:26 p.m. UTC | #1
From: Sam Ravnborg <sam@ravnborg.org>
Date: Wed,  5 Jan 2011 22:03:45 +0100

> sparc has always SBUS defined.
> So there is no need to have #ifdef CONFIG_SBUS within
> code that is SPARC only.
> 
> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>

This breaks the build on x86, sbus_can_burst64() is only defined on
sparc currently.

So if you want to make this patch you'll need to add a dummy
implementation somewhere that gets defined on non-sparc.
--
To unsubscribe from this list: send the line "unsubscribe sparclinux" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/sunhme.c b/drivers/net/sunhme.c
index 5e28c41..e716795 100644
--- a/drivers/net/sunhme.c
+++ b/drivers/net/sunhme.c
@@ -1578,18 +1578,13 @@  static int happy_meal_init(struct happy_meal *hp)
 	hme_write32(hp, gregs + GREG_CFG, GREG_CFG_BURST64);
 #else
 	if ((hp->happy_bursts & DMA_BURST64) &&
-	    ((hp->happy_flags & HFLAG_PCI) != 0
-#ifdef CONFIG_SBUS
-	     || sbus_can_burst64()
-#endif
-	     || 0)) {
+	    ((hp->happy_flags & HFLAG_PCI) != 0 || sbus_can_burst64() || 0)) {
 		u32 gcfg = GREG_CFG_BURST64;
 
 		/* I have no idea if I should set the extended
 		 * transfer mode bit for Cheerio, so for now I
 		 * do not.  -DaveM
 		 */
-#ifdef CONFIG_SBUS
 		if ((hp->happy_flags & HFLAG_PCI) == 0) {
 			struct platform_device *op = hp->happy_dev;
 			if (sbus_can_dma_64bit()) {
@@ -1598,8 +1593,6 @@  static int happy_meal_init(struct happy_meal *hp)
 				gcfg |= GREG_CFG_64BIT;
 			}
 		}
-#endif
-
 		HMD(("64>"));
 		hme_write32(hp, gregs + GREG_CFG, gcfg);
 	} else if (hp->happy_bursts & DMA_BURST32) {