#ifndef PLAT_CLCD_H #define PLAT_CLCD_H #ifdef CONFIG_PLAT_VERSATILE_CLCD struct clcd_panel *versatile_clcd_get_panel(const char *); int versatile_clcd_setup_dma(struct clcd_fb *, unsigned long); int versatile_clcd_mmap_dma(struct clcd_fb *, struct vm_area_struct *); void versatile_clcd_remove_dma(struct clcd_fb *); #else static inline struct clcd_panel *versatile_clcd_get_panel(const char *s) { return NULL; } static inline int versatile_clcd_setup_dma(struct clcd_fb *fb, unsigned long framesize) { return -ENODEV; } static inline int versatile_clcd_mmap_dma(struct clcd_fb *fb, struct vm_area_struct *vm) { return -ENODEV; } static inline void versatile_clcd_remove_dma(struct clcd_fb *fb) { } #endif #endif lue='82a5619410d4c4df65c04272db198eca5a867c18'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/fs/isofs/namei.c
AgeCommit message (Expand)Author
2013-06-29Don't pass inode to ->d_hash() and ->d_compare()Linus Torvalds
2012-07-14stop passing nameidata to ->lookup()Al Viro
2011-07-22isofs: Remove global fs lockJan Kara
2011-07-20make d_splice_alias(ERR_PTR(err), dentry) = ERR_PTR(err)Al Viro