cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mpc85xx.h (422B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef MPC85xx_H
      3#define MPC85xx_H
      4extern int mpc85xx_common_publish_devices(void);
      5
      6#ifdef CONFIG_CPM2
      7extern void mpc85xx_cpm2_pic_init(void);
      8#else
      9static inline void __init mpc85xx_cpm2_pic_init(void) {}
     10#endif /* CONFIG_CPM2 */
     11
     12#ifdef CONFIG_QUICC_ENGINE
     13extern void mpc85xx_qe_par_io_init(void);
     14#else
     15static inline void __init mpc85xx_qe_par_io_init(void) {}
     16#endif
     17
     18#endif