Re: [RFC][PATCH] add PCI bus registration support [2/9]

2005-07-14 Thread Adam Belay
On Thu, 2005-07-14 at 12:33 -0700, Greg KH wrote: > On Thu, Jul 14, 2005 at 04:55:12AM -0400, Adam Belay wrote: > > +EXPORT_SYMBOL(pci_add_bus); > > This doens't need to be exported, right? No module uses it. But if > they do, I suggest EXPORT_SYMBOL_GPL() instead, is that ok? > > thanks, > >

Re: [RFC][PATCH] add PCI bus registration support [2/9]

2005-07-14 Thread Greg KH
On Thu, Jul 14, 2005 at 04:55:12AM -0400, Adam Belay wrote: > +EXPORT_SYMBOL(pci_add_bus); This doens't need to be exported, right? No module uses it. But if they do, I suggest EXPORT_SYMBOL_GPL() instead, is that ok? thanks, greg k-h - To unsubscribe from this list: send the line "unsubscribe

[RFC][PATCH] add PCI bus registration support [2/9]

2005-07-14 Thread Adam Belay
This patch adds pci_add_bus() for PCI bus registration. It also moves pci_remove_bus() from remove.c to bus/bus.c for consistency. Signed-off-by: Adam Belay <[EMAIL PROTECTED]> --- a/drivers/pci/bus/bus.c 2005-07-12 00:59:58.0 -0400 +++ b/drivers/pci/bus/bus.c 2005-07-12 01:01:1