Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e1be067b authored by Hans de Goede's avatar Hans de Goede Committed by Sarah Sharp
Browse files

uas: Add a uas_find_uas_alt_setting helper function



This is a preparation patch for teaching usb-storage to not bind to
uas devices.

Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarSarah Sharp <sarah.a.sharp@linux.intel.com>
parent d3f7c156
Loading
Loading
Loading
Loading
+16 −5
Original line number Diff line number Diff line
@@ -892,10 +892,10 @@ static int uas_isnt_supported(struct usb_device *udev)
	return -ENODEV;
}

static int uas_switch_interface(struct usb_device *udev,
						struct usb_interface *intf)
static int uas_find_uas_alt_setting(struct usb_interface *intf)
{
	int i;
	struct usb_device *udev = interface_to_usbdev(intf);
	int sg_supported = udev->bus->sg_tablesize != 0;

	for (i = 0; i < intf->num_altsetting; i++) {
@@ -904,15 +904,26 @@ static int uas_switch_interface(struct usb_device *udev,
		if (uas_is_interface(alt)) {
			if (!sg_supported)
				return uas_isnt_supported(udev);
			return usb_set_interface(udev,
						alt->desc.bInterfaceNumber,
						alt->desc.bAlternateSetting);
			return alt->desc.bAlternateSetting;
		}
	}

	return -ENODEV;
}

static int uas_switch_interface(struct usb_device *udev,
				struct usb_interface *intf)
{
	int alt;

	alt = uas_find_uas_alt_setting(intf);
	if (alt < 0)
		return alt;

	return usb_set_interface(udev,
			intf->altsetting[0].desc.bInterfaceNumber, alt);
}

static void uas_configure_endpoints(struct uas_dev_info *devinfo)
{
	struct usb_host_endpoint *eps[4] = { };