ALPHA: drivers: 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, __devexit_p, __devinitdata, 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: Richard Henderson <rth@twiddle.net> Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5b5e76e9cb
commit
f8d6c8d98d
4 changed files with 11 additions and 13 deletions
|
@ -9,8 +9,8 @@
|
||||||
#ifndef _ASM_AXP_PARPORT_H
|
#ifndef _ASM_AXP_PARPORT_H
|
||||||
#define _ASM_AXP_PARPORT_H 1
|
#define _ASM_AXP_PARPORT_H 1
|
||||||
|
|
||||||
static int __devinit parport_pc_find_isa_ports (int autoirq, int autodma);
|
static int parport_pc_find_isa_ports (int autoirq, int autodma);
|
||||||
static int __devinit parport_pc_find_nonpci_ports (int autoirq, int autodma)
|
static int parport_pc_find_nonpci_ports (int autoirq, int autodma)
|
||||||
{
|
{
|
||||||
return parport_pc_find_isa_ports (autoirq, autodma);
|
return parport_pc_find_isa_ports (autoirq, autodma);
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,13 +59,13 @@ struct pci_controller *pci_isa_hose;
|
||||||
* Quirks.
|
* Quirks.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void __devinit quirk_isa_bridge(struct pci_dev *dev)
|
static void quirk_isa_bridge(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
dev->class = PCI_CLASS_BRIDGE_ISA << 8;
|
dev->class = PCI_CLASS_BRIDGE_ISA << 8;
|
||||||
}
|
}
|
||||||
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82378, quirk_isa_bridge);
|
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82378, quirk_isa_bridge);
|
||||||
|
|
||||||
static void __devinit quirk_cypress(struct pci_dev *dev)
|
static void quirk_cypress(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
/* The Notorious Cy82C693 chip. */
|
/* The Notorious Cy82C693 chip. */
|
||||||
|
|
||||||
|
@ -104,7 +104,7 @@ static void __devinit quirk_cypress(struct pci_dev *dev)
|
||||||
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_CONTAQ, PCI_DEVICE_ID_CONTAQ_82C693, quirk_cypress);
|
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_CONTAQ, PCI_DEVICE_ID_CONTAQ_82C693, quirk_cypress);
|
||||||
|
|
||||||
/* Called for each device after PCI setup is done. */
|
/* Called for each device after PCI setup is done. */
|
||||||
static void __devinit pcibios_fixup_final(struct pci_dev *dev)
|
static void pcibios_fixup_final(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
unsigned int class = dev->class >> 8;
|
unsigned int class = dev->class >> 8;
|
||||||
|
|
||||||
|
@ -198,8 +198,7 @@ subsys_initcall(pcibios_init);
|
||||||
#ifdef ALPHA_RESTORE_SRM_SETUP
|
#ifdef ALPHA_RESTORE_SRM_SETUP
|
||||||
static struct pdev_srm_saved_conf *srm_saved_configs;
|
static struct pdev_srm_saved_conf *srm_saved_configs;
|
||||||
|
|
||||||
void __devinit
|
void pdev_save_srm_config(struct pci_dev *dev)
|
||||||
pdev_save_srm_config(struct pci_dev *dev)
|
|
||||||
{
|
{
|
||||||
struct pdev_srm_saved_conf *tmp;
|
struct pdev_srm_saved_conf *tmp;
|
||||||
static int printed = 0;
|
static int printed = 0;
|
||||||
|
@ -241,8 +240,7 @@ pci_restore_srm_config(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void __devinit
|
void pcibios_fixup_bus(struct pci_bus *bus)
|
||||||
pcibios_fixup_bus(struct pci_bus *bus)
|
|
||||||
{
|
{
|
||||||
struct pci_dev *dev = bus->self;
|
struct pci_dev *dev = bus->self;
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,7 @@ enum ipi_message_type {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Set to a secondary's cpuid when it comes online. */
|
/* Set to a secondary's cpuid when it comes online. */
|
||||||
static int smp_secondary_alive __devinitdata = 0;
|
static int smp_secondary_alive = 0;
|
||||||
|
|
||||||
int smp_num_probed; /* Internal processor count */
|
int smp_num_probed; /* Internal processor count */
|
||||||
int smp_num_cpus = 1; /* Number that came online. */
|
int smp_num_cpus = 1; /* Number that came online. */
|
||||||
|
@ -172,7 +172,7 @@ smp_callin(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Wait until hwrpb->txrdy is clear for cpu. Return -1 on timeout. */
|
/* Wait until hwrpb->txrdy is clear for cpu. Return -1 on timeout. */
|
||||||
static int __devinit
|
static int
|
||||||
wait_for_txrdy (unsigned long cpumask)
|
wait_for_txrdy (unsigned long cpumask)
|
||||||
{
|
{
|
||||||
unsigned long timeout;
|
unsigned long timeout;
|
||||||
|
@ -468,7 +468,7 @@ smp_prepare_cpus(unsigned int max_cpus)
|
||||||
smp_num_cpus = smp_num_probed;
|
smp_num_cpus = smp_num_probed;
|
||||||
}
|
}
|
||||||
|
|
||||||
void __devinit
|
void
|
||||||
smp_prepare_boot_cpu(void)
|
smp_prepare_boot_cpu(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
@ -303,7 +303,7 @@ titan_late_init(void)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devinit
|
static int
|
||||||
titan_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
|
titan_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
|
||||||
{
|
{
|
||||||
u8 intline;
|
u8 intline;
|
||||||
|
|
Loading…
Reference in a new issue