• Home
  • Engineering
  • Training
  • Docs
  • Community
  • Company
  • twitter
  • mastodon
  • linkedin
  • github

Bootlin logo

Elixir Cross Referencer

Open Menu / rust / helpers / serdev.c

Projects

  • linux

Versions

  • FIXME
    • FIXME
      • next-20260811
 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);
}
linux next-20260811 Download file Top powered by Elixir a26ba81