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