diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-06-04 07:13:34 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-06-05 10:53:19 -0400 |
commit | e9ca90074c26c50c16805fb54de45d1b46a0f1e5 (patch) | |
tree | 4b9b30c55d71918cf30cb5dc4d961718de5d423e /include/uapi/linux/dvb/audio.h | |
parent | 9b925365569eb4e845c006fdc254257e78fc12a4 (diff) |
media: do not use C++ style comments in uapi headers
Linux kernel tolerates C++ style comments these days. Actually, the
SPDX License tags for .c files start with //.
On the other hand, uapi headers are written in more strict C, where
the C++ comment style is forbidden.
[mchehab+samsung@kernel.org: fix a checkpatch --strict warning]
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'include/uapi/linux/dvb/audio.h')
-rw-r--r-- | include/uapi/linux/dvb/audio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/dvb/audio.h b/include/uapi/linux/dvb/audio.h index afeae063e640..977bed135e22 100644 --- a/include/uapi/linux/dvb/audio.h +++ b/include/uapi/linux/dvb/audio.h @@ -52,7 +52,7 @@ typedef enum { typedef struct audio_mixer { unsigned int volume_left; unsigned int volume_right; - // what else do we need? bass, pass-through, ... + /* what else do we need? bass, pass-through, ... */ } audio_mixer_t; |