Drivers: ssb: remove __dev* attributes.
CONFIG_HOTPLUG is going away as an option. As a result, the __dev* markings need to be removed. This change removes the use of __devinit, and __devexit from these drivers. Based on patches originally written by Bill Pemberton, but redone by me in order to handle some of the coding style issues better, by hand. Cc: Bill Pemberton <wfp5p@virginia.edu> Cc: Michael Buesch <m@bues.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -548,7 +548,7 @@ error:
|
||||
}
|
||||
|
||||
/* Needs ssb_buses_lock() */
|
||||
static int __devinit ssb_attach_queued_buses(void)
|
||||
static int ssb_attach_queued_buses(void)
|
||||
{
|
||||
struct ssb_bus *bus, *n;
|
||||
int err = 0;
|
||||
@@ -761,9 +761,9 @@ out:
|
||||
return err;
|
||||
}
|
||||
|
||||
static int __devinit ssb_bus_register(struct ssb_bus *bus,
|
||||
ssb_invariants_func_t get_invariants,
|
||||
unsigned long baseaddr)
|
||||
static int ssb_bus_register(struct ssb_bus *bus,
|
||||
ssb_invariants_func_t get_invariants,
|
||||
unsigned long baseaddr)
|
||||
{
|
||||
int err;
|
||||
|
||||
@@ -851,8 +851,7 @@ err_disable_xtal:
|
||||
}
|
||||
|
||||
#ifdef CONFIG_SSB_PCIHOST
|
||||
int __devinit ssb_bus_pcibus_register(struct ssb_bus *bus,
|
||||
struct pci_dev *host_pci)
|
||||
int ssb_bus_pcibus_register(struct ssb_bus *bus, struct pci_dev *host_pci)
|
||||
{
|
||||
int err;
|
||||
|
||||
@@ -875,9 +874,9 @@ EXPORT_SYMBOL(ssb_bus_pcibus_register);
|
||||
#endif /* CONFIG_SSB_PCIHOST */
|
||||
|
||||
#ifdef CONFIG_SSB_PCMCIAHOST
|
||||
int __devinit ssb_bus_pcmciabus_register(struct ssb_bus *bus,
|
||||
struct pcmcia_device *pcmcia_dev,
|
||||
unsigned long baseaddr)
|
||||
int ssb_bus_pcmciabus_register(struct ssb_bus *bus,
|
||||
struct pcmcia_device *pcmcia_dev,
|
||||
unsigned long baseaddr)
|
||||
{
|
||||
int err;
|
||||
|
||||
@@ -897,9 +896,8 @@ EXPORT_SYMBOL(ssb_bus_pcmciabus_register);
|
||||
#endif /* CONFIG_SSB_PCMCIAHOST */
|
||||
|
||||
#ifdef CONFIG_SSB_SDIOHOST
|
||||
int __devinit ssb_bus_sdiobus_register(struct ssb_bus *bus,
|
||||
struct sdio_func *func,
|
||||
unsigned int quirks)
|
||||
int ssb_bus_sdiobus_register(struct ssb_bus *bus, struct sdio_func *func,
|
||||
unsigned int quirks)
|
||||
{
|
||||
int err;
|
||||
|
||||
@@ -919,9 +917,8 @@ int __devinit ssb_bus_sdiobus_register(struct ssb_bus *bus,
|
||||
EXPORT_SYMBOL(ssb_bus_sdiobus_register);
|
||||
#endif /* CONFIG_SSB_PCMCIAHOST */
|
||||
|
||||
int __devinit ssb_bus_ssbbus_register(struct ssb_bus *bus,
|
||||
unsigned long baseaddr,
|
||||
ssb_invariants_func_t get_invariants)
|
||||
int ssb_bus_ssbbus_register(struct ssb_bus *bus, unsigned long baseaddr,
|
||||
ssb_invariants_func_t get_invariants)
|
||||
{
|
||||
int err;
|
||||
|
||||
|
Reference in New Issue
Block a user