mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
Add basic USB abstractions, consisting of usb::{Device, Interface,
Driver, Adapter, DeviceId} and the module_usb_driver macro. This is the
first step in being able to write USB device drivers, which paves the
way for USB media drivers - for example - among others.
This initial support will then be used by a subsequent sample driver,
which constitutes the only user of the USB abstractions so far.
Signed-off-by: Daniel Almeida <daniel.almeida@collabora.com>
Link: https://lore.kernel.org/r/20250825-b4-usb-v1-1-7aa024de7ae8@collabora.com
[ force USB = y for now - gregkh ]
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9 lines
179 B
C
9 lines
179 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/usb.h>
|
|
|
|
struct usb_device *rust_helper_interface_to_usbdev(struct usb_interface *intf)
|
|
{
|
|
return interface_to_usbdev(intf);
|
|
}
|