mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:04:41 +01:00
This is needed to inline these helpers into Rust code. Signed-off-by: Alice Ryhl <aliceryhl@google.com> Reviewed-by: Gary Guo <gary@garyguo.net> Reviewed-by: Boqun Feng <boqun.feng@gmail.com> Link: https://patch.msgid.link/20251202-define-rust-helper-v1-1-a2e13cbc17a6@google.com Signed-off-by: Danilo Krummrich <dakr@kernel.org>
15 lines
330 B
C
15 lines
330 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/auxiliary_bus.h>
|
|
|
|
__rust_helper void
|
|
rust_helper_auxiliary_device_uninit(struct auxiliary_device *adev)
|
|
{
|
|
return auxiliary_device_uninit(adev);
|
|
}
|
|
|
|
__rust_helper void
|
|
rust_helper_auxiliary_device_delete(struct auxiliary_device *adev)
|
|
{
|
|
return auxiliary_device_delete(adev);
|
|
}
|