mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 23:21:31 +00:00
cad5cef62a
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, __devinitconst, 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: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
35 lines
836 B
C
35 lines
836 B
C
#ifndef _PASEMI_PASEMI_H
|
|
#define _PASEMI_PASEMI_H
|
|
|
|
extern unsigned long pas_get_boot_time(void);
|
|
extern void pas_pci_init(void);
|
|
extern void pas_pci_irq_fixup(struct pci_dev *dev);
|
|
extern void pas_pci_dma_dev_setup(struct pci_dev *dev);
|
|
|
|
extern void __iomem *pasemi_pci_getcfgaddr(struct pci_dev *dev, int offset);
|
|
|
|
extern void __init alloc_iobmap_l2(void);
|
|
extern void __init pasemi_map_registers(void);
|
|
|
|
/* Power savings modes, implemented in asm */
|
|
extern void idle_spin(void);
|
|
extern void idle_doze(void);
|
|
|
|
/* Restore astate to last set */
|
|
#ifdef CONFIG_PPC_PASEMI_CPUFREQ
|
|
extern int check_astate(void);
|
|
extern void restore_astate(int cpu);
|
|
#else
|
|
static inline int check_astate(void)
|
|
{
|
|
/* Always return >0 so we never power save */
|
|
return 1;
|
|
}
|
|
static inline void restore_astate(int cpu)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* _PASEMI_PASEMI_H */
|