[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <8bd0f97a0811061316u6b9a330dy279cb7dca679ab73@mail.gmail.com>
Date: Thu, 6 Nov 2008 16:16:00 -0500
From: "Mike Frysinger" <vapier.adi@...il.com>
To: "Michael Buesch" <mb@...sch.de>
Cc: "John Linville" <linville@...driver.com>,
"Mike Frysinger" <vapier@...too.org>, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] ssb: Fix DMA-API compilation for non-PCI systems
On Thu, Nov 6, 2008 at 15:49, Michael Buesch wrote:
> --- wireless-testing.orig/include/linux/ssb/ssb.h 2008-08-01 17:26:05.000000000 +0200
> +++ wireless-testing/include/linux/ssb/ssb.h 2008-11-06 21:45:37.000000000 +0100
> @@ -427,12 +427,16 @@ static inline int ssb_dma_mapping_error(
> {
> switch (dev->bus->bustype) {
> case SSB_BUSTYPE_PCI:
> +#ifdef CONFIG_SSB_PCIHOST
> return pci_dma_mapping_error(dev->bus->host_pci, addr);
> +#endif
> + break;
> case SSB_BUSTYPE_SSB:
> return dma_mapping_error(dev->dev, addr);
> default:
> - __ssb_dma_not_implemented(dev);
> + break;
> }
all these functions now read:
default: break;
seems kind of pointless ... why not just drop that case completely
otherwise looks good, thanks
-mike
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists