mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
Add a name() method to the `Device` type, which returns a CStr that contains the device name. Signed-off-by: Timur Tabi <ttabi@nvidia.com> Reviewed-by: Alice Ryhl <aliceryhl@google.com> Reviewed-by: Alexandre Courbot <acourbot@nvidia.com> Reviewed-by: Gary Guo <gary@garyguo.net> Tested-by: John Hubbard <jhubbard@nvidia.com> Tested-by: Eliot Courtney <ecourtney@nvidia.com> Link: https://patch.msgid.link/20260319212658.2541610-2-ttabi@nvidia.com Signed-off-by: Danilo Krummrich <dakr@kernel.org>
33 lines
754 B
C
33 lines
754 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/device.h>
|
|
|
|
__rust_helper int rust_helper_devm_add_action(struct device *dev,
|
|
void (*action)(void *),
|
|
void *data)
|
|
{
|
|
return devm_add_action(dev, action, 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);
|
|
}
|
|
|
|
__rust_helper void *rust_helper_dev_get_drvdata(const struct device *dev)
|
|
{
|
|
return dev_get_drvdata(dev);
|
|
}
|
|
|
|
__rust_helper void rust_helper_dev_set_drvdata(struct device *dev, void *data)
|
|
{
|
|
dev_set_drvdata(dev, data);
|
|
}
|
|
|
|
__rust_helper const char *rust_helper_dev_name(const struct device *dev)
|
|
{
|
|
return dev_name(dev);
|
|
}
|