[media] rc: don't break long lines
Due to the 80-cols restrictions, and latter due to checkpatch warnings, several strings were broken into multiple lines. This is not considered a good practice anymore, as it makes harder to grep for strings at the source code. As we're right now fixing other drivers due to KERN_CONT, we need to be able to identify what printk strings don't end with a "\n". It is a way easier to detect those if we don't break long lines. So, join those continuation lines. The patch was generated via the script below, and manually adjusted if needed. </script> use Text::Tabs; while (<>) { if ($next ne "") { $c=$_; if ($c =~ /^\s+\"(.*)/) { $c2=$1; $next =~ s/\"\n$//; $n = expand($next); $funpos = index($n, '('); $pos = index($c2, '",'); if ($funpos && $pos > 0) { $s1 = substr $c2, 0, $pos + 2; $s2 = ' ' x ($funpos + 1) . substr $c2, $pos + 2; $s2 =~ s/^\s+//; $s2 = ' ' x ($funpos + 1) . $s2 if ($s2 ne ""); print unexpand("$next$s1\n"); print unexpand("$s2\n") if ($s2 ne ""); } else { print "$next$c2\n"; } $next=""; next; } else { print $next; } $next=""; } else { if (m/\"$/) { if (!m/\\n\"$/) { $next=$_; next; } } } print $_; } </script> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
@@ -265,8 +265,7 @@ static void redrat3_dump_fw_error(struct redrat3_dev *rr3, int code)
|
||||
|
||||
/* Codes 0x20 through 0x2f are IR Firmware Errors */
|
||||
case 0x20:
|
||||
pr_cont("Initial signal pulse not long enough "
|
||||
"to measure carrier frequency\n");
|
||||
pr_cont("Initial signal pulse not long enough to measure carrier frequency\n");
|
||||
break;
|
||||
case 0x21:
|
||||
pr_cont("Not enough length values allocated for signal\n");
|
||||
@@ -278,18 +277,15 @@ static void redrat3_dump_fw_error(struct redrat3_dev *rr3, int code)
|
||||
pr_cont("Too many signal repeats\n");
|
||||
break;
|
||||
case 0x28:
|
||||
pr_cont("Insufficient memory available for IR signal "
|
||||
"data memory allocation\n");
|
||||
pr_cont("Insufficient memory available for IR signal data memory allocation\n");
|
||||
break;
|
||||
case 0x29:
|
||||
pr_cont("Insufficient memory available "
|
||||
"for IrDa signal data memory allocation\n");
|
||||
pr_cont("Insufficient memory available for IrDa signal data memory allocation\n");
|
||||
break;
|
||||
|
||||
/* Codes 0x30 through 0x3f are USB Firmware Errors */
|
||||
case 0x30:
|
||||
pr_cont("Insufficient memory available for bulk "
|
||||
"transfer structure\n");
|
||||
pr_cont("Insufficient memory available for bulk transfer structure\n");
|
||||
break;
|
||||
|
||||
/*
|
||||
@@ -301,8 +297,7 @@ static void redrat3_dump_fw_error(struct redrat3_dev *rr3, int code)
|
||||
pr_cont("Signal capture has been terminated\n");
|
||||
break;
|
||||
case 0x41:
|
||||
pr_cont("Attempt to set/get and unknown signal I/O "
|
||||
"algorithm parameter\n");
|
||||
pr_cont("Attempt to set/get and unknown signal I/O algorithm parameter\n");
|
||||
break;
|
||||
case 0x42:
|
||||
pr_cont("Signal capture already started\n");
|
||||
@@ -917,8 +912,7 @@ static struct rc_dev *redrat3_init_rc_dev(struct redrat3_dev *rr3)
|
||||
goto out;
|
||||
}
|
||||
|
||||
snprintf(rr3->name, sizeof(rr3->name), "RedRat3%s "
|
||||
"Infrared Remote Transceiver (%04x:%04x)",
|
||||
snprintf(rr3->name, sizeof(rr3->name), "RedRat3%s Infrared Remote Transceiver (%04x:%04x)",
|
||||
prod == USB_RR3IIUSB_PRODUCT_ID ? "-II" : "",
|
||||
le16_to_cpu(rr3->udev->descriptor.idVendor), prod);
|
||||
|
||||
|
Reference in New Issue
Block a user