Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/powerpc/platforms/86xx/mpc86xx.h
26481 views
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
/*
3
* Copyright 2006 Freescale Semiconductor Inc.
4
*/
5
6
#ifndef __MPC86XX_H__
7
#define __MPC86XX_H__
8
9
/*
10
* Declaration for the various functions exported by the
11
* mpc86xx_* files. Mostly for use by mpc86xx_setup().
12
*/
13
14
extern void mpc86xx_smp_init(void);
15
extern void mpc86xx_init_irq(void);
16
extern long mpc86xx_time_init(void);
17
extern int mpc86xx_common_publish_devices(void);
18
19
#endif /* __MPC86XX_H__ */
20
21