diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2021-08-02 22:40:31 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-08-19 02:02:55 +0200 |
commit | 39f75da7bcc829ddc4d40bb60d0e95520de7898b (patch) | |
tree | a16c7f4bf392281b053c764a4b31a1ccc474fec8 /sound | |
parent | scripts/Makefile.clang: default to LLVM_IAS=1 (diff) | |
download | linux-39f75da7bcc829ddc4d40bb60d0e95520de7898b.tar.xz linux-39f75da7bcc829ddc4d40bb60d0e95520de7898b.zip |
isystem: trim/fixup stdarg.h and other headers
Delete/fixup few includes in anticipation of global -isystem compile
option removal.
Note: crypto/aegis128-neon-inner.c keeps <stddef.h> due to redefinition
of uintptr_t error (one definition comes from <stddef.h>, another from
<linux/types.h>).
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/aoa/codecs/onyx.h | 1 | ||||
-rw-r--r-- | sound/aoa/codecs/tas.c | 1 | ||||
-rw-r--r-- | sound/core/info.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/sound/aoa/codecs/onyx.h b/sound/aoa/codecs/onyx.h index 8a32c3c3d716..6c31b7373b78 100644 --- a/sound/aoa/codecs/onyx.h +++ b/sound/aoa/codecs/onyx.h @@ -6,7 +6,6 @@ */ #ifndef __SND_AOA_CODEC_ONYX_H #define __SND_AOA_CODEC_ONYX_H -#include <stddef.h> #include <linux/i2c.h> #include <asm/pmac_low_i2c.h> #include <asm/prom.h> diff --git a/sound/aoa/codecs/tas.c b/sound/aoa/codecs/tas.c index ac246dd3ab49..ab19a37e2a68 100644 --- a/sound/aoa/codecs/tas.c +++ b/sound/aoa/codecs/tas.c @@ -58,7 +58,6 @@ * and up to the hardware designer to not wire * them up in some weird unusable way. */ -#include <stddef.h> #include <linux/i2c.h> #include <asm/pmac_low_i2c.h> #include <asm/prom.h> diff --git a/sound/core/info.c b/sound/core/info.c index 9fec3070f8ba..a451b24199c3 100644 --- a/sound/core/info.c +++ b/sound/core/info.c @@ -16,7 +16,6 @@ #include <linux/utsname.h> #include <linux/proc_fs.h> #include <linux/mutex.h> -#include <stdarg.h> int snd_info_check_reserved_words(const char *str) { |