Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
fork
Configure Feed
Select the types of activity you want to include in your feed.
1#ifndef _AMBA_CLCD_NOMADIK_H
2#define _AMBA_CLCD_NOMADIK_H
3
4#include <linux/amba/bus.h>
5
6#ifdef CONFIG_ARCH_NOMADIK
7int nomadik_clcd_init_board(struct amba_device *adev,
8 struct clcd_board *board);
9int nomadik_clcd_init_panel(struct clcd_fb *fb, struct device_node *panel);
10#else
11static inline int nomadik_clcd_init_board(struct amba_device *adev,
12 struct clcd_board *board)
13{
14 return 0;
15}
16static inline int nomadik_clcd_init_panel(struct clcd_fb *fb,
17 struct device_node *panel)
18{
19 return 0;
20}
21#endif
22
23#endif /* inclusion guard */