Re: An MCA ESP driver

2008-01-05 Thread Matthew Wilcox
On Sat, Jan 05, 2008 at 03:18:12PM -0600, James Bottomley wrote: > Just a check up on this: Matthew were you ever going to complete the > mca_94x conversion? It's quite topical because it would be another > example driver for the m68k people to look at. > > If not, I can probably complete the bi

Re: An MCA ESP driver

2008-01-05 Thread James Bottomley
On Wed, 2007-08-15 at 14:55 -0700, David Miller wrote: > From: Matthew Wilcox <[EMAIL PROTECTED]> > Date: Wed, 15 Aug 2007 11:26:00 -0600 > > > On Tue, Aug 07, 2007 at 12:26:04AM -0700, David Miller wrote: > > > > - struct sbus_dma *dma; > > > > + union { > > > > +

Re: An MCA ESP driver

2007-08-15 Thread David Miller
From: Matthew Wilcox <[EMAIL PROTECTED]> Date: Wed, 15 Aug 2007 11:26:00 -0600 > On Tue, Aug 07, 2007 at 12:26:04AM -0700, David Miller wrote: > > > - struct sbus_dma *dma; > > > + union { > > > + struct sbus_dma *sbus_dma; > > > + unsigned intx86_dma; > > > + }; > > >

Re: An MCA ESP driver

2007-08-15 Thread Matthew Wilcox
On Tue, Aug 07, 2007 at 12:26:04AM -0700, David Miller wrote: > > - struct sbus_dma *dma; > > + union { > > + struct sbus_dma *sbus_dma; > > + unsigned intx86_dma; > > + }; > > }; > > Feel free to make this a "void *dma_cookie" or similar. > It's private to t

Re: An MCA ESP driver

2007-08-07 Thread David Miller
From: Matthew Wilcox <[EMAIL PROTECTED]> Date: Mon, 6 Aug 2007 17:24:58 -0600 > @@ -514,11 +514,14 @@ struct esp { > > struct completion *eh_reset; > > - struct sbus_dma *dma; > + union { > + struct sbus_dma *sbus_dma; > + unsigned intx86

An MCA ESP driver

2007-08-06 Thread Matthew Wilcox
This is about 90% complete. I need to implement: drivers/scsi/mca_53c9x.c:191: error: 'mca_esp_reset_dma' undeclared here (not in a function) drivers/scsi/mca_53c9x.c:192: error: 'mca_esp_dma_drain' undeclared here (not in a function) drivers/scsi/mca_53c9x.c:193: error: 'mca_esp_dma_invalidate