Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
wireless
/
wireless-testing
/
afa9a6f4f5744d907954f5b708d76c9bffa43234
/
.
/
rust
/
helpers
/
device.c
blob: b2135c6686b027cf4756dc308d841ec6fa782bad [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<linux/device.h>
int
rust_helper_devm_add_action
(
struct
device
*
dev
,
void
(*
action
)(
void
*),
void
*
data
)
{
return
devm_add_action
(
dev
,
action
,
data
);
}