Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.17-rc2 24 lines 589 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _AMBA_CLCD_NOMADIK_H 3#define _AMBA_CLCD_NOMADIK_H 4 5#include <linux/amba/bus.h> 6 7#ifdef CONFIG_ARCH_NOMADIK 8int nomadik_clcd_init_board(struct amba_device *adev, 9 struct clcd_board *board); 10int nomadik_clcd_init_panel(struct clcd_fb *fb, struct device_node *panel); 11#else 12static inline int nomadik_clcd_init_board(struct amba_device *adev, 13 struct clcd_board *board) 14{ 15 return 0; 16} 17static inline int nomadik_clcd_init_panel(struct clcd_fb *fb, 18 struct device_node *panel) 19{ 20 return 0; 21} 22#endif 23 24#endif /* inclusion guard */