#ifndef _AMBA_CLCD_NOMADIK_H #define _AMBA_CLCD_NOMADIK_H #include #ifdef CONFIG_ARCH_NOMADIK int nomadik_clcd_init_board(struct amba_device *adev, struct clcd_board *board); int nomadik_clcd_init_panel(struct clcd_fb *fb, struct device_node *endpoint); #else static inline int nomadik_clcd_init_board(struct amba_device *adev, struct clcd_board *board) { return 0; } static inline int nomadik_clcd_init_panel(struct clcd_fb *fb, struct device_node *endpoint) { return 0; } #endif #endif /* inclusion guard */ ='cgit'>
summaryrefslogtreecommitdiff
path: root/net/unix
AgeCommit message (Expand)AuthorFilesLines
2017-02-02unix: add ioctl to open a unix socket file with O_PATHAndrey Vagin1-0/+41