mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:04:41 +01:00
rust: device: add __rust_helper to helpers
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-14-a2e13cbc17a6@google.com Signed-off-by: Danilo Krummrich <dakr@kernel.org>
This commit is contained in:
parent
3365b71bc4
commit
93c7fa7416
1 changed files with 8 additions and 8 deletions
|
|
@ -2,26 +2,26 @@
|
|||
|
||||
#include <linux/device.h>
|
||||
|
||||
int rust_helper_devm_add_action(struct device *dev,
|
||||
void (*action)(void *),
|
||||
void *data)
|
||||
__rust_helper int rust_helper_devm_add_action(struct device *dev,
|
||||
void (*action)(void *),
|
||||
void *data)
|
||||
{
|
||||
return devm_add_action(dev, action, data);
|
||||
}
|
||||
|
||||
int rust_helper_devm_add_action_or_reset(struct device *dev,
|
||||
void (*action)(void *),
|
||||
void *data)
|
||||
__rust_helper int rust_helper_devm_add_action_or_reset(struct device *dev,
|
||||
void (*action)(void *),
|
||||
void *data)
|
||||
{
|
||||
return devm_add_action_or_reset(dev, action, data);
|
||||
}
|
||||
|
||||
void *rust_helper_dev_get_drvdata(const struct device *dev)
|
||||
__rust_helper void *rust_helper_dev_get_drvdata(const struct device *dev)
|
||||
{
|
||||
return dev_get_drvdata(dev);
|
||||
}
|
||||
|
||||
void rust_helper_dev_set_drvdata(struct device *dev, void *data)
|
||||
__rust_helper void rust_helper_dev_set_drvdata(struct device *dev, void *data)
|
||||
{
|
||||
dev_set_drvdata(dev, data);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue