mirror of
https://github.com/torvalds/linux.git
synced 2024-12-12 14:12:51 +00:00
5bfd643583
Looking through the remaining users of the deprecated mktime() function, I found the powerpc rtc handlers, which use it in place of rtc_tm_to_time64(). To clean this up, I'm changing over the read_persistent_clock() function to the read_persistent_clock64() variant, and change all the platform specific handlers along with it. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
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);
|
|
|
|
extern void __iomem *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 */
|