* Re: [PATCH] RESEND 8390: Split 8390 support into a pausing and a non pausing driver core [not found] <20080119155817.326ee5e0@lxorguk.ukuu.org.uk> @ 2008-04-17 0:46 ` Jeff Garzik 2008-04-17 1:05 ` Andrew Morton 2008-04-17 5:32 ` Alan Cox 0 siblings, 2 replies; 3+ messages in thread From: Jeff Garzik @ 2008-04-17 0:46 UTC (permalink / raw) To: Alan Cox, akpm; +Cc: NetDev Alan Cox wrote: > +++ linux-2.6.24-rc8-mm1/drivers/net/8390p.c 2008-01-19 15:00:41.000000000 +0000 > @@ -0,0 +1,66 @@ > +/* 8390 core for ISA devices needing bus delays */ > + > +static const char version[] = > + "8390p.c:v1.10cvs 9/23/94 Donald Becker (becker@cesdis.gsfc.nasa.gov)\n"; > + > +#define ei_inb(_p) inb(_p) > +#define ei_outb(_v,_p) outb(_v,_p) > +#define ei_inb_p(_p) inb_p(_p) > +#define ei_outb_p(_v,_p) outb_p(_v,_p) > + > +#include "lib8390.c" > + > +int eip_open(struct net_device *dev) > +{ > + return __ei_open(dev); > +} > + > +int eip_close(struct net_device *dev) > +{ > + return __ei_close(dev); > +} > + > +irqreturn_t eip_interrupt(int irq, void *dev_id) > +{ > + return __ei_interrupt(irq, dev_id); > +} > + > +#ifdef CONFIG_NET_POLL_CONTROLLER > +void eip_poll(struct net_device *dev) > +{ > + __ei_poll(dev); > +} > +#endif > + > +struct net_device *__alloc_eip_netdev(int size) > +{ > + return ____alloc_ei_netdev(size); > +} > + > +void NS8390p_init(struct net_device *dev, int startp) > +{ > + return __NS8390_init(dev, startp); > +} > + > +EXPORT_SYMBOL(eip_open); > +EXPORT_SYMBOL(eip_close); > +EXPORT_SYMBOL(eip_interrupt); > +#ifdef CONFIG_NET_POLL_CONTROLLER > +EXPORT_SYMBOL(eip_poll); > +#endif > +EXPORT_SYMBOL(NS8390p_init); > +EXPORT_SYMBOL(__alloc_eip_netdev); > + > +#if defined(MODULE) > + > +int init_module(void) > +{ > + return 0; > +} > + > +void cleanup_module(void) > +{ > +} > + > +#endif /* MODULE */ > +MODULE_LICENSE("GPL"); Now that this has seen a bit of testing, and accumulated some fix patches in -mm, can I get a roll-up of all those into a single patch? Looks OK to me. My one minor comment is that I would think the init_module() would be superfluous? Jeff ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] RESEND 8390: Split 8390 support into a pausing and a non pausing driver core 2008-04-17 0:46 ` [PATCH] RESEND 8390: Split 8390 support into a pausing and a non pausing driver core Jeff Garzik @ 2008-04-17 1:05 ` Andrew Morton 2008-04-17 5:32 ` Alan Cox 1 sibling, 0 replies; 3+ messages in thread From: Andrew Morton @ 2008-04-17 1:05 UTC (permalink / raw) To: Jeff Garzik; +Cc: alan, netdev On Wed, 16 Apr 2008 20:46:25 -0400 Jeff Garzik <jeff@garzik.org> wrote: > > Now that this has seen a bit of testing, and accumulated some fix > patches in -mm, can I get a roll-up of all those into a single patch? I have a note that it has unresolved build problems, but I haven't seen them for ages. hrm. Oh well, if they're there, they'll be fixed easily enough I guess. > Looks OK to me. My one minor comment is that I would think the > init_module() would be superfluous? ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] RESEND 8390: Split 8390 support into a pausing and a non pausing driver core 2008-04-17 0:46 ` [PATCH] RESEND 8390: Split 8390 support into a pausing and a non pausing driver core Jeff Garzik 2008-04-17 1:05 ` Andrew Morton @ 2008-04-17 5:32 ` Alan Cox 1 sibling, 0 replies; 3+ messages in thread From: Alan Cox @ 2008-04-17 5:32 UTC (permalink / raw) To: Jeff Garzik; +Cc: akpm, NetDev > Now that this has seen a bit of testing, and accumulated some fix > patches in -mm, can I get a roll-up of all those into a single patch? > > Looks OK to me. My one minor comment is that I would think the > init_module() would be superfluous? The new module is generated directly from the old one so possibly neither need it. Alan ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-04-17 14:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20080119155817.326ee5e0@lxorguk.ukuu.org.uk>
2008-04-17 0:46 ` [PATCH] RESEND 8390: Split 8390 support into a pausing and a non pausing driver core Jeff Garzik
2008-04-17 1:05 ` Andrew Morton
2008-04-17 5:32 ` Alan Cox
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).