blob: c52b78ca3fc753f1befdba22624fb3f00fbf9eea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// SPDX-License-Identifier: GPL-2.0
#include <linux/serdev.h>
__rust_helper
void rust_helper_serdev_device_driver_unregister(struct serdev_device_driver *sdrv)
{
serdev_device_driver_unregister(sdrv);
}
__rust_helper
void rust_helper_serdev_device_put(struct serdev_device *serdev)
{
serdev_device_put(serdev);
}
__rust_helper
void rust_helper_serdev_device_set_client_ops(struct serdev_device *serdev,
const struct serdev_device_ops *ops)
{
serdev_device_set_client_ops(serdev, ops);
}
|