mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-01 06:42:31 +00:00
[media] DVB: dib0700, remove double \n's from log
err() already adds \n to the end of the format string. So remove one more \n from formatting strings in the dib0700 driver. Signed-off-by: Jiri Slaby <jslaby@suse.cz> Cc: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
660e22c7b0
commit
24ed693da0
@ -768,13 +768,13 @@ int dib0700_rc_setup(struct dvb_usb_device *d)
|
||||
/* Starting in firmware 1.20, the RC info is provided on a bulk pipe */
|
||||
purb = usb_alloc_urb(0, GFP_KERNEL);
|
||||
if (purb == NULL) {
|
||||
err("rc usb alloc urb failed\n");
|
||||
err("rc usb alloc urb failed");
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
purb->transfer_buffer = kzalloc(RC_MSG_SIZE_V1_20, GFP_KERNEL);
|
||||
if (purb->transfer_buffer == NULL) {
|
||||
err("rc kzalloc failed\n");
|
||||
err("rc kzalloc failed");
|
||||
usb_free_urb(purb);
|
||||
return -ENOMEM;
|
||||
}
|
||||
@ -786,7 +786,7 @@ int dib0700_rc_setup(struct dvb_usb_device *d)
|
||||
|
||||
ret = usb_submit_urb(purb, GFP_ATOMIC);
|
||||
if (ret) {
|
||||
err("rc submit urb failed\n");
|
||||
err("rc submit urb failed");
|
||||
kfree(purb->transfer_buffer);
|
||||
usb_free_urb(purb);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user