1
0
Fork 0
android_kernel_rockchip_tart/rust/helpers/device.c
2025-06-27 00:32:42 -05:00

10 lines
208 B
C

// 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);
}