diff options
author | Tamir Duberstein <tamird@gmail.com> | 2024-10-09 12:25:30 -0400 |
---|---|---|
committer | Miguel Ojeda <ojeda@kernel.org> | 2024-10-21 17:35:59 +0200 |
commit | d4d7c05f9656fd8e14c6977a54986264eb296ec8 (patch) | |
tree | 41a30f27d90c6610a565d4153686fbe93b2c280b /rust/helpers/workqueue.c | |
parent | 54c5dc52143e5b335b698f4e8810efa1f00787bf (diff) | |
download | linux-d4d7c05f9656fd8e14c6977a54986264eb296ec8.tar.gz linux-d4d7c05f9656fd8e14c6977a54986264eb296ec8.tar.bz2 linux-d4d7c05f9656fd8e14c6977a54986264eb296ec8.zip |
rust: helpers: remove unnecessary header includes
Commit e26fa546042a ("rust: kbuild: auto generate helper exports")
removed the need for these by automatically generating the exports; it
removed the explicit uses of `EXPORT_SYMBOL_GPL` but didn't remove the
`#include <linux/export.h>`s.
Signed-off-by: Tamir Duberstein <tamird@gmail.com>
Reviewed-by: Gary Guo <gary@garyguo.net>
Reviewed-by: Andreas Hindborg <a.hindborg@kernel.org>
Link: https://lore.kernel.org/r/20241009162553.27845-2-tamird@gmail.com
[ Reworded title. - Miguel ]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'rust/helpers/workqueue.c')
-rw-r--r-- | rust/helpers/workqueue.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rust/helpers/workqueue.c b/rust/helpers/workqueue.c index f59427acc323..b2b82753509b 100644 --- a/rust/helpers/workqueue.c +++ b/rust/helpers/workqueue.c @@ -1,6 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -#include <linux/export.h> #include <linux/workqueue.h> void rust_helper_init_work_with_key(struct work_struct *work, work_func_t func, |