linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] PnP MODULE_DEVICE_TABLE Update - 2.5.46 (3/6)
@ 2002-11-06 21:02 Adam Belay
  2002-11-07  6:28 ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Adam Belay @ 2002-11-06 21:02 UTC (permalink / raw)
  To: greg, linux-kernel; +Cc: perex

Here's a patch from Jaroslav Kysela.  It was sent in previously but doesn't 
appear to be included.  Here it is again only now against 2.5.46.



diff -ur --new-file a/drivers/net/e100/e100_main.c b/drivers/net/e100/e100_main.c
--- a/drivers/net/e100/e100_main.c	Wed Oct 30 17:45:58 2002
+++ b/drivers/net/e100/e100_main.c	Wed Oct 30 17:45:24 2002
@@ -87,8 +87,8 @@
 extern int e100_create_proc_subdir(struct e100_private *, char *);
 extern void e100_remove_proc_subdir(struct e100_private *, char *);
 #else
-#define e100_create_proc_subdir(X) 0
-#define e100_remove_proc_subdir(X) do {} while(0)
+#define e100_create_proc_subdir(X, Y) 0
+#define e100_remove_proc_subdir(X, Y) do {} while(0)
 #endif
 
 static int e100_do_ethtool_ioctl(struct net_device *, struct ifreq *);
diff -ur --new-file a/include/linux/module.h b/include/linux/module.h
--- a/include/linux/module.h	Wed Oct 30 17:45:58 2002
+++ b/include/linux/module.h	Wed Oct 30 17:45:24 2002
@@ -239,6 +239,8 @@
  * The following is a list of known device types (arg 1),
  * and the C types which are to be passed as arg 2.
  * pci - struct pci_device_id - List of PCI ids supported by this module
+ * pnpc - struct pnpc_device_id - List of PnP card ids (PNPBIOS, ISA PnP) supported by this module
+ * pnp - struct pnp_device_id - List of PnP ids (PNPBIOS, ISA PnP) supported by this module
  * isapnp - struct isapnp_device_id - List of ISA PnP ids supported by this module
  * usb - struct usb_device_id - List of USB ids supported by this module
  */
diff -ur --new-file a/include/linux/pnp.h b/include/linux/pnp.h
--- a/include/linux/pnp.h	Wed Oct 30 17:45:58 2002
+++ b/include/linux/pnp.h	Wed Oct 30 17:45:24 2002
@@ -79,6 +79,9 @@
 
 /* Driver Management */
 
+#define pnpc_device_id pnp_id		/* for module.h */
+#define pnp_device_id pnp_id		/* for module.h */
+
 struct pnp_id {
 	char id[7];
 	unsigned long driver_data;	/* data private to the driver */
diff -ur --new-file a/include/linux/sunrpc/stats.h b/include/linux/sunrpc/stats.h
--- a/include/linux/sunrpc/stats.h	Wed Oct 30 17:45:58 2002
+++ b/include/linux/sunrpc/stats.h	Wed Oct 30 17:45:24 2002
@@ -61,16 +61,18 @@
 
 #else
 
+static inline struct proc_dir_entry *rpc_proc_register(struct rpc_stat *s) { return NULL; }
+static inline void rpc_proc_unregister(const char *p) {}
+static inline int rpc_proc_read(char *a, char **b, off_t c, int d, int *e, void *f) { return 0; }
+static inline void rpc_proc_zero(struct rpc_program *p) {}
+
+static inline struct proc_dir_entry *svc_proc_register(struct svc_stat *s) { return NULL; }
 static inline void svc_proc_unregister(const char *p) {}
-static inline struct proc_dir_entry*svc_proc_register(struct svc_stat *s)
-{
-	return NULL;
-}
+static inline int svc_proc_read(char *a, char **b, off_t c, int d, int *e, void *f) { return 0; }
+static inline void svc_proc_zero(struct svc_program *p) {}
+
+#define proc_net_rpc NULL
 
-static inline int svc_proc_read(char *a, char **b, off_t c, int d, int *e, void *f)
-{
-	return 0;
-}
 #endif
 
 #endif /* _LINUX_SUNRPC_STATS_H */
diff -ur --new-file a/sound/oss/opl3sa2.c b/sound/oss/opl3sa2.c
--- a/sound/oss/opl3sa2.c	Wed Oct 30 17:45:58 2002
+++ b/sound/oss/opl3sa2.c	Wed Oct 30 17:45:24 2002
@@ -841,7 +841,7 @@
 	{.id = ""}
 };
 
-/*MODULE_DEVICE_TABLE(isapnp, isapnp_opl3sa2_list);*/
+MODULE_DEVICE_TABLE(pnp, pnp_opl3sa2_list);
 
 static int opl3sa2_pnp_probe(struct pnp_dev *dev, const struct pnp_id *card_id,
 			     const struct pnp_id *dev_id)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] PnP MODULE_DEVICE_TABLE Update - 2.5.46 (3/6)
  2002-11-06 21:02 [PATCH] PnP MODULE_DEVICE_TABLE Update - 2.5.46 (3/6) Adam Belay
@ 2002-11-07  6:28 ` Greg KH
  2002-11-07 11:29   ` Jaroslav Kysela
  0 siblings, 1 reply; 6+ messages in thread
From: Greg KH @ 2002-11-07  6:28 UTC (permalink / raw)
  To: Adam Belay, linux-kernel, perex

On Wed, Nov 06, 2002 at 09:02:00PM +0000, Adam Belay wrote:
> 
> diff -ur --new-file a/include/linux/module.h b/include/linux/module.h
> --- a/include/linux/module.h	Wed Oct 30 17:45:58 2002
> +++ b/include/linux/module.h	Wed Oct 30 17:45:24 2002
> @@ -239,6 +239,8 @@
>   * The following is a list of known device types (arg 1),
>   * and the C types which are to be passed as arg 2.
>   * pci - struct pci_device_id - List of PCI ids supported by this module
> + * pnpc - struct pnpc_device_id - List of PnP card ids (PNPBIOS, ISA PnP) supported by this module
> + * pnp - struct pnp_device_id - List of PnP ids (PNPBIOS, ISA PnP) supported by this module

I must have missed this last time, but to refresh my memory, why do you
need two different device types?  What's the difference between a card
id and a device id?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] PnP MODULE_DEVICE_TABLE Update - 2.5.46 (3/6)
  2002-11-07  6:28 ` Greg KH
@ 2002-11-07 11:29   ` Jaroslav Kysela
  2002-11-12  1:13     ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Jaroslav Kysela @ 2002-11-07 11:29 UTC (permalink / raw)
  To: Greg KH; +Cc: Adam Belay, linux-kernel

On Wed, 6 Nov 2002, Greg KH wrote:

> On Wed, Nov 06, 2002 at 09:02:00PM +0000, Adam Belay wrote:
> > 
> > diff -ur --new-file a/include/linux/module.h b/include/linux/module.h
> > --- a/include/linux/module.h	Wed Oct 30 17:45:58 2002
> > +++ b/include/linux/module.h	Wed Oct 30 17:45:24 2002
> > @@ -239,6 +239,8 @@
> >   * The following is a list of known device types (arg 1),
> >   * and the C types which are to be passed as arg 2.
> >   * pci - struct pci_device_id - List of PCI ids supported by this module
> > + * pnpc - struct pnpc_device_id - List of PnP card ids (PNPBIOS, ISA PnP) supported by this module
> > + * pnp - struct pnp_device_id - List of PnP ids (PNPBIOS, ISA PnP) supported by this module
> 
> I must have missed this last time, but to refresh my memory, why do you
> need two different device types?  What's the difference between a card
> id and a device id?

The card id represents a group of logical devices (device ids). It's good
to know how are devices connected, especially for soundcards where are
several logical devices working together (codec, synth, midi uart).
Addressing these devices separately (as the OSS sound driver does for
example) causes a lot of confusion for users when more cards are in one
system.

						Jaroslav

-----
Jaroslav Kysela <perex@suse.cz>
Linux Kernel Sound Maintainer
ALSA Project  http://www.alsa-project.org
SuSE Linux    http://www.suse.com


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] PnP MODULE_DEVICE_TABLE Update - 2.5.46 (3/6)
  2002-11-07 11:29   ` Jaroslav Kysela
@ 2002-11-12  1:13     ` Greg KH
  2002-11-12 12:46       ` Jaroslav Kysela
  0 siblings, 1 reply; 6+ messages in thread
From: Greg KH @ 2002-11-12  1:13 UTC (permalink / raw)
  To: Jaroslav Kysela; +Cc: Adam Belay, linux-kernel

On Thu, Nov 07, 2002 at 12:29:52PM +0100, Jaroslav Kysela wrote:
> On Wed, 6 Nov 2002, Greg KH wrote:
> 
> > On Wed, Nov 06, 2002 at 09:02:00PM +0000, Adam Belay wrote:
> > > 
> > > diff -ur --new-file a/include/linux/module.h b/include/linux/module.h
> > > --- a/include/linux/module.h	Wed Oct 30 17:45:58 2002
> > > +++ b/include/linux/module.h	Wed Oct 30 17:45:24 2002
> > > @@ -239,6 +239,8 @@
> > >   * The following is a list of known device types (arg 1),
> > >   * and the C types which are to be passed as arg 2.
> > >   * pci - struct pci_device_id - List of PCI ids supported by this module
> > > + * pnpc - struct pnpc_device_id - List of PnP card ids (PNPBIOS, ISA PnP) supported by this module
> > > + * pnp - struct pnp_device_id - List of PnP ids (PNPBIOS, ISA PnP) supported by this module
> > 
> > I must have missed this last time, but to refresh my memory, why do you
> > need two different device types?  What's the difference between a card
> > id and a device id?
> 
> The card id represents a group of logical devices (device ids). It's good
> to know how are devices connected, especially for soundcards where are
> several logical devices working together (codec, synth, midi uart).
> Addressing these devices separately (as the OSS sound driver does for
> example) causes a lot of confusion for users when more cards are in one
> system.

But I don't see any code using this functionality in the kernel right
now (or in the patches just sent out.)  Is it really needed if there is
no users?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] PnP MODULE_DEVICE_TABLE Update - 2.5.46 (3/6)
  2002-11-12  1:13     ` Greg KH
@ 2002-11-12 12:46       ` Jaroslav Kysela
  2002-11-12 19:28         ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Jaroslav Kysela @ 2002-11-12 12:46 UTC (permalink / raw)
  To: Greg KH; +Cc: Adam Belay, linux-kernel

On Mon, 11 Nov 2002, Greg KH wrote:

> On Thu, Nov 07, 2002 at 12:29:52PM +0100, Jaroslav Kysela wrote:
> > On Wed, 6 Nov 2002, Greg KH wrote:
> > 
> > > On Wed, Nov 06, 2002 at 09:02:00PM +0000, Adam Belay wrote:
> > > > 
> > > > diff -ur --new-file a/include/linux/module.h b/include/linux/module.h
> > > > --- a/include/linux/module.h	Wed Oct 30 17:45:58 2002
> > > > +++ b/include/linux/module.h	Wed Oct 30 17:45:24 2002
> > > > @@ -239,6 +239,8 @@
> > > >   * The following is a list of known device types (arg 1),
> > > >   * and the C types which are to be passed as arg 2.
> > > >   * pci - struct pci_device_id - List of PCI ids supported by this module
> > > > + * pnpc - struct pnpc_device_id - List of PnP card ids (PNPBIOS, ISA PnP) supported by this module
> > > > + * pnp - struct pnp_device_id - List of PnP ids (PNPBIOS, ISA PnP) supported by this module
> > > 
> > > I must have missed this last time, but to refresh my memory, why do you
> > > need two different device types?  What's the difference between a card
> > > id and a device id?
> > 
> > The card id represents a group of logical devices (device ids). It's good
> > to know how are devices connected, especially for soundcards where are
> > several logical devices working together (codec, synth, midi uart).
> > Addressing these devices separately (as the OSS sound driver does for
> > example) causes a lot of confusion for users when more cards are in one
> > system.
> 
> But I don't see any code using this functionality in the kernel right
> now (or in the patches just sent out.)  Is it really needed if there is
> no users?

All ALSA modules will use it after this patch is merged.

						Jaroslav

-----
Jaroslav Kysela <perex@suse.cz>
Linux Kernel Sound Maintainer
ALSA Project, SuSE Labs


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] PnP MODULE_DEVICE_TABLE Update - 2.5.46 (3/6)
  2002-11-12 12:46       ` Jaroslav Kysela
@ 2002-11-12 19:28         ` Greg KH
  0 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2002-11-12 19:28 UTC (permalink / raw)
  To: Jaroslav Kysela; +Cc: Adam Belay, linux-kernel

On Tue, Nov 12, 2002 at 01:46:43PM +0100, Jaroslav Kysela wrote:
> 
> All ALSA modules will use it after this patch is merged.

I had to not apply the include/linux/module.h changes as Rusty is in the
middle of hacking that code into a billion tiny pieces.  As it was only
a comment change, I don't think it was a big deal right now :)

And he is currently changing the MODULE_DEVICE_TABLE() logic to not
expose kernel structures to userspace, so you might want to watch that
to see if it will work for your type of devices too.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2002-11-12 19:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-11-06 21:02 [PATCH] PnP MODULE_DEVICE_TABLE Update - 2.5.46 (3/6) Adam Belay
2002-11-07  6:28 ` Greg KH
2002-11-07 11:29   ` Jaroslav Kysela
2002-11-12  1:13     ` Greg KH
2002-11-12 12:46       ` Jaroslav Kysela
2002-11-12 19:28         ` Greg KH

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).