mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 22:21:42 +00:00
e37e06af9b
Some functions defined in 'arch/powerpc/platforms/pasemi' are deserving of an `__init` macro attribute. These functions are only called by other initialization functions and therefore should inherit the attribute. Also, change function declarations in header files to include `__init`. Signed-off-by: Nick Child <nick.child@ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20211216220035.605465-10-nick.child@ibm.com
36 lines
888 B
C
36 lines
888 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _PASEMI_PASEMI_H
|
|
#define _PASEMI_PASEMI_H
|
|
|
|
extern time64_t 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);
|
|
|
|
void __iomem *__init pasemi_pci_getcfgaddr(struct pci_dev *dev, int offset);
|
|
|
|
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
|
|
|
|
extern struct pci_controller_ops pasemi_pci_controller_ops;
|
|
|
|
#endif /* _PASEMI_PASEMI_H */
|