Loading...
Note: File does not exist in v6.13.7.
1// SPDX-License-Identifier: GPL-2.0
2
3struct device;
4struct pl111_drm_dev_private;
5struct regmap;
6
7#ifdef CONFIG_ARCH_VEXPRESS
8
9int pl111_vexpress_clcd_init(struct device *dev,
10 struct pl111_drm_dev_private *priv,
11 struct regmap *map);
12
13int vexpress_muxfpga_init(void);
14
15#else
16
17static inline int pl111_vexpress_clcd_init(struct device *dev,
18 struct pl111_drm_dev_private *priv,
19 struct regmap *map)
20{
21 return -ENODEV;
22}
23
24static inline int vexpress_muxfpga_init(void)
25{
26 return 0;
27}
28
29#endif