blob: ae1af2ed33abdce90619e40205787c1956810713 [file] [log] [blame]
Sheetal Tigadoli58a9eca2019-12-18 20:05:09 +05301/*
2 * Copyright (c) 2017 - 2020, Broadcom
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef PAXC_H
8#define PAXC_H
9
10#ifdef USE_PAXC
11void paxc_init(void);
12void paxc_mhb_ns_init(void);
13#else
14static inline void paxc_init(void)
15{
16}
17
18static inline void paxc_mhb_ns_init(void)
19{
20}
21#endif
22
23#endif /* PAXC_H */