aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2020-08-18 13:04:44 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-08-18 13:10:40 +0200
commit28157b8c7d9a9c92d1da31af486fe4ad39862edd (patch)
tree921e5c88a3a8324abf21e5406c75c3e51eb22a90
parentRevert "PCI: brcmstb: Wait for Raspberry Pi's firmware when present" (diff)
downloadlinux-dev-28157b8c7d9a9c92d1da31af486fe4ad39862edd.tar.xz
linux-dev-28157b8c7d9a9c92d1da31af486fe4ad39862edd.zip
USB: Better name for __check_usb_generic()
__check_usb_generic() doesn't explain very well what the function actually does: It checks to see whether the driver is non-generic and matches the device. Change it to check_for_non_generic_match() Signed-off-by: Bastien Nocera <hadess@hadess.net> Link: https://lore.kernel.org/r/20200818110445.509668-2-hadess@hadess.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/core/generic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/core/generic.c b/drivers/usb/core/generic.c
index b6f2d4b44754..d27ac8e78b2e 100644
--- a/drivers/usb/core/generic.c
+++ b/drivers/usb/core/generic.c
@@ -195,7 +195,7 @@ int usb_choose_configuration(struct usb_device *udev)
}
EXPORT_SYMBOL_GPL(usb_choose_configuration);
-static int __check_usb_generic(struct device_driver *drv, void *data)
+static int __check_for_non_generic_match(struct device_driver *drv, void *data)
{
struct usb_device *udev = data;
struct usb_device_driver *udrv;
@@ -218,7 +218,7 @@ static bool usb_generic_driver_match(struct usb_device *udev)
* If any other driver wants the device, leave the device to this other
* driver.
*/
- if (bus_for_each_drv(&usb_bus_type, NULL, udev, __check_usb_generic))
+ if (bus_for_each_drv(&usb_bus_type, NULL, udev, __check_for_non_generic_match))
return false;
return true;