mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
f64fdde9bc
Fix interrupt function prototypes, move all prototypes into a new file ip32-common.h and include it where needed. Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
16 lines
382 B
C
16 lines
382 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef __IP32_COMMON_H
|
|
#define __IP32_COMMON_H
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/interrupt.h>
|
|
|
|
void __init crime_init(void);
|
|
irqreturn_t crime_memerr_intr(int irq, void *dev_id);
|
|
irqreturn_t crime_cpuerr_intr(int irq, void *dev_id);
|
|
void __init ip32_be_init(void);
|
|
void ip32_prepare_poweroff(void);
|
|
|
|
#endif /* __IP32_COMMON_H */
|