xref: /linux/rust/helpers/device.c (revision b47d1fcd0d4b65c055d1e0b60fdb33c9b93b7bc5)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/device.h>
4 
5 int rust_helper_devm_add_action(struct device *dev,
6 				void (*action)(void *),
7 				void *data)
8 {
9 	return devm_add_action(dev, action, data);
10 }
11