diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-28 18:27:39 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-07-30 21:34:34 +0300 |
commit | 509ce4c85bd055ee1013bc853b5d543428b0f017 (patch) | |
tree | 64a65de5e2051012e0f430bb4130bcfb641a0535 /include/uapi/linux/ppdev.h | |
parent | ab81f3f386e2650b625c4dfe8ca092d30289c2a3 (diff) | |
download | linux-509ce4c85bd055ee1013bc853b5d543428b0f017.tar.xz |
ppdev: add header include guard
Add a header include guard just in case.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Link: https://lore.kernel.org/r/20190728152739.9249-1-yamada.masahiro@socionext.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/uapi/linux/ppdev.h')
-rw-r--r-- | include/uapi/linux/ppdev.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/uapi/linux/ppdev.h b/include/uapi/linux/ppdev.h index 8fe3c64d149e..eb895b83f2bd 100644 --- a/include/uapi/linux/ppdev.h +++ b/include/uapi/linux/ppdev.h @@ -15,6 +15,9 @@ * Added PPGETMODES/PPGETMODE/PPGETPHASE, Fred Barnes <frmb2@ukc.ac.uk>, 03/01/2001 */ +#ifndef _UAPI_LINUX_PPDEV_H +#define _UAPI_LINUX_PPDEV_H + #define PP_IOCTL 'p' /* Set mode for read/write (e.g. IEEE1284_MODE_EPP) */ @@ -97,4 +100,4 @@ struct ppdev_frob_struct { /* only masks user-visible flags */ #define PP_FLAGMASK (PP_FASTWRITE | PP_FASTREAD | PP_W91284PIC) - +#endif /* _UAPI_LINUX_PPDEV_H */ |