lkml.org 
[lkml]   [2021]   [Jun]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 1/3] media: dvb-usb: break long strings in dvb_usb_device_init
Date
Signed-off-by: Dongliang Mu <mudongliangabcd@gmail.com>
---
drivers/media/usb/dvb-usb/dvb-usb-init.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/drivers/media/usb/dvb-usb/dvb-usb-init.c b/drivers/media/usb/dvb-usb/dvb-usb-init.c
index 28e1fd64dd3c..edc477cedaa9 100644
--- a/drivers/media/usb/dvb-usb/dvb-usb-init.c
+++ b/drivers/media/usb/dvb-usb/dvb-usb-init.c
@@ -286,13 +286,15 @@ int dvb_usb_device_init(struct usb_interface *intf,

desc = dvb_usb_find_device(udev, &d->props, &cold);
if (!desc) {
- deb_err("something went very wrong, device was not found in current device list - let's see what comes next.\n");
+ deb_err("something went very wrong,
+ device was not found in current device list.\n");
ret = -ENODEV;
goto error;
}

if (cold) {
- info("found a '%s' in cold state, will try to load a firmware", desc->name);
+ info("found a %s in cold state, will try to load a firmware",
+ desc->name);
ret = dvb_usb_download_firmware(udev, props);
if (!props->no_reconnect || ret != 0)
goto error;
@@ -314,7 +316,7 @@ int dvb_usb_device_init(struct usb_interface *intf,
if (du)
*du = d;

- info("%s successfully initialized and connected.", desc->name);
+ info("%s is successfully initialized and connected.", desc->name);
return 0;

error:
--
2.25.1
\
 
 \ /
  Last update: 2021-06-21 07:09    [W:0.199 / U:0.040 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site