brintos

brintos / linux-shallow public Read only

0
0
Text · 261 B · 47ccf5c Raw
20 lines · c
1// SPDX-License-Identifier: GPL-2.0+2 3#ifndef PL111_NOMADIK_H4#define PL111_NOMADIK_H5#endif6 7struct device;8 9#ifdef CONFIG_ARCH_NOMADIK10 11void pl111_nomadik_init(struct device *dev);12 13#else14 15static inline void pl111_nomadik_init(struct device *dev)16{17}18 19#endif20