/* * linux/fs/hfsplus/acl.h * * Vyacheslav Dubeyko * * Handler for Posix Access Control Lists (ACLs) support. */ #include #ifdef CONFIG_HFSPLUS_FS_POSIX_ACL /* posix_acl.c */ struct posix_acl *hfsplus_get_posix_acl(struct inode *inode, int type); int hfsplus_set_posix_acl(struct inode *inode, struct posix_acl *acl, int type); extern int hfsplus_init_posix_acl(struct inode *, struct inode *); #else /* CONFIG_HFSPLUS_FS_POSIX_ACL */ #define hfsplus_get_posix_acl NULL #define hfsplus_set_posix_acl NULL static inline int hfsplus_init_posix_acl(struct inode *inode, struct inode *dir) { return 0; } #endif /* CONFIG_HFSPLUS_FS_POSIX_ACL */ 'logo' rowspan='2'>cgit logo index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorNeil Armstrong <narmstrong@baylibre.com>2017-01-02 16:09:59 +0100
committerNeil Armstrong <narmstrong@baylibre.com>2017-01-03 10:23:02 +0100
commitdcafc45dcb6d8bb6d159ed0a903bd0f3de597fac (patch)
tree05b4d0a7ac9ac8017bddbfbe50bbc25af9efca19 /sound
parent0c744ea4f77d72b3dcebb7a8f2684633ec79be88 (diff)
drm/meson: Fix plane atomic check when no crtc for the plane
When no CRTC is associated with the plane, the meson_plane_atomic_check() call breaks the kernel with an Oops. Fixes: bbbe775ec5b5 ("drm: Add support for Amlogic Meson Graphic Controller") Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Diffstat (limited to 'sound')