Re: [PATCH] Let cassini use ioremap_nocache

2006-04-07 Thread Marc Zyngier
> "Michael" == Michael Buesch <[EMAIL PROTECTED]> writes: Michael> If you use pci_iomap, you will have to use its counterpart, Michael> pci_iounmap, too. Indeed... Here is the latest patch. M. This patch (against 2.6.17-rc1) converts the cassini driver to the pci_iomap API, so archi

Re: [PATCH] Let cassini use ioremap_nocache

2006-04-06 Thread Marc Zyngier
> "Jeff" == Jeff Garzik <[EMAIL PROTECTED]> writes: Jeff> BTW, pci_iomap() will automatically select the right thing... Fair enough. Here's an updated patch. M. diff --git a/drivers/net/cassini.c b/drivers/net/cassini.c index ac48f75..2f5ea75 100644 --- a/drivers/net/cassini.c +++ b

[PATCH] Let cassini use ioremap_nocache

2006-04-06 Thread Marc Zyngier
People, On PARISC, kernel screams if a driver uses ioremap on an io-port region. It now strongly insists on using ioremap_nocache, which sounds sensible enough since, in this case, cassini wants to map the card registers. The included one-line patch fixes it. Please consider applying. M