Contributors: 3
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Danilo Krummrich |
110 |
95.65% |
3 |
60.00% |
| Alice Ryhl |
4 |
3.48% |
1 |
20.00% |
| Miguel Ojeda Sandonis |
1 |
0.87% |
1 |
20.00% |
| Total |
115 |
|
5 |
|
// 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);
}