From: Masahiro Yamada Date: Fri, 24 Nov 2023 14:26:17 +0000 (+0900) Subject: rust: replace with in rust/exports.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=dc92ac9f6383a5026d6070a79035ebcc28c59d1b;p=linux.git rust: replace with in rust/exports.c is the right header to include for using EXPORT_SYMBOL_GPL. includes much more bloat. Signed-off-by: Masahiro Yamada Reviewed-by: Martin Rodriguez Reboredo Link: https://lore.kernel.org/r/20231124142617.713096-1-masahiroy@kernel.org Signed-off-by: Miguel Ojeda --- diff --git a/rust/exports.c b/rust/exports.c index 83e2a7070cae8..3803c21d1403e 100644 --- a/rust/exports.c +++ b/rust/exports.c @@ -11,7 +11,7 @@ * accidentally exposed. */ -#include +#include #define EXPORT_SYMBOL_RUST_GPL(sym) extern int sym; EXPORT_SYMBOL_GPL(sym)