blob: 47ccf5c839fc2239c46cc07b96f905115f25d5b6 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0+
2
3#ifndef PL111_NOMADIK_H
4#define PL111_NOMADIK_H
5#endif
6
7struct device;
8
9#ifdef CONFIG_ARCH_NOMADIK
10
11void pl111_nomadik_init(struct device *dev);
12
13#else
14
15static inline void pl111_nomadik_init(struct device *dev)
16{
17}
18
19#endif