diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-06-18 11:42:58 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-06-19 08:58:51 +0200 |
commit | c83a74ed5f2220f9d5792471eda7d3b8378c9d59 (patch) | |
tree | 84716818305c6c2bef62c78f52ba172000c2f8c3 /drivers/usb/storage | |
parent | 66f092ed3b94de867a28f77d39bac53395b872e4 (diff) | |
download | linux-c83a74ed5f2220f9d5792471eda7d3b8378c9d59.tar.gz linux-c83a74ed5f2220f9d5792471eda7d3b8378c9d59.tar.bz2 linux-c83a74ed5f2220f9d5792471eda7d3b8378c9d59.zip |
USB: storage: fix wording in error message
Make it obvious that the UAS driver is being ignored for a specific
device by fixing up the wording to be more clear.
Cc: Alan Stern <stern@rowland.harvard.edu>
Link: https://lore.kernel.org/r/20200618094300.1887727-7-gregkh@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/storage')
-rw-r--r-- | drivers/usb/storage/uas-detect.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/storage/uas-detect.h b/drivers/usb/storage/uas-detect.h index 3734a25e09e5..3f720faa6f97 100644 --- a/drivers/usb/storage/uas-detect.h +++ b/drivers/usb/storage/uas-detect.h @@ -120,7 +120,7 @@ static int uas_use_uas_driver(struct usb_interface *intf, if (flags & US_FL_IGNORE_UAS) { dev_warn(&udev->dev, - "UAS is blacklisted for this device, using usb-storage instead\n"); + "UAS is ignored for this device, using usb-storage instead\n"); return 0; } |