mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
Since all board support is now gone, a lot of code in the platform is no longer called and can be removed as well. The remaining parts are: * The interrupt numbers for pxa910 are still needed for the power management support. * The 'mfp' device is still statically initialized from platform code, though this could be moved into the pinctrl code * The CPU identification code is used for the cpu_is_mmp*() macros. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
16 lines
432 B
C
16 lines
432 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ASM_MACH_PXA168_H
|
|
#define __ASM_MACH_PXA168_H
|
|
|
|
#include <linux/reboot.h>
|
|
|
|
extern void pxa168_timer_init(void);
|
|
extern void __init pxa168_init_irq(void);
|
|
extern void pxa168_restart(enum reboot_mode, const char *);
|
|
extern void pxa168_clear_keypad_wakeup(void);
|
|
|
|
#include <linux/i2c.h>
|
|
#include <linux/soc/mmp/cputype.h>
|
|
#include <linux/irqchip/mmp.h>
|
|
|
|
#endif /* __ASM_MACH_PXA168_H */
|