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

binderfs: use correct include guards in header

When we switched over from binder_ctl.h to binderfs.h we forgot to change
the include guards. It's minor but it's obviously correct.

Signed-off-by: Christian Brauner <christian@brauner.io>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Christian Brauner and committed by
Greg Kroah-Hartman
6fc23b6e d8e346eb

+3 -3
+3 -3
include/uapi/linux/android/binderfs.h
··· 4 4 * 5 5 */ 6 6 7 - #ifndef _UAPI_LINUX_BINDER_CTL_H 8 - #define _UAPI_LINUX_BINDER_CTL_H 7 + #ifndef _UAPI_LINUX_BINDERFS_H 8 + #define _UAPI_LINUX_BINDERFS_H 9 9 10 10 #include <linux/android/binder.h> 11 11 #include <linux/types.h> ··· 31 31 */ 32 32 #define BINDER_CTL_ADD _IOWR('b', 1, struct binderfs_device) 33 33 34 - #endif /* _UAPI_LINUX_BINDER_CTL_H */ 34 + #endif /* _UAPI_LINUX_BINDERFS_H */ 35 35