Commit e0a691e3 authored by Tomas Winkler's avatar Tomas Winkler Committed by Greg Kroah-Hartman

staging/easycap: fix artificial line breaks

fix style issue:
		if (NULL !=
				pdata_urb->purb) {
created by the patch:
	'staging/easycap: don't cast NULL pointer'

After dropping the casting there is no longer 80 columns
limitation
Reported-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 3fc0dae8
...@@ -316,8 +316,7 @@ if (true == other) { ...@@ -316,8 +316,7 @@ if (true == other) {
peasycap_standard = &easycap_standard[0]; peasycap_standard = &easycap_standard[0];
while (0xFFFF != peasycap_standard->mask) { while (0xFFFF != peasycap_standard->mask) {
if (true == ntsc) { if (true == ntsc) {
if (NTSC_M == if (NTSC_M == peasycap_standard->v4l2_standard.index) {
peasycap_standard->v4l2_standard.index) {
peasycap->inputset[input].standard_offset = peasycap->inputset[input].standard_offset =
peasycap_standard - peasycap_standard -
&easycap_standard[0]; &easycap_standard[0];
...@@ -3631,8 +3630,7 @@ for (i = 0; i < pusb_interface->num_altsetting; i++) { ...@@ -3631,8 +3630,7 @@ for (i = 0; i < pusb_interface->num_altsetting; i++) {
return -EFAULT; return -EFAULT;
} }
pusb_interface_descriptor = &(pusb_host_interface->desc); pusb_interface_descriptor = &(pusb_host_interface->desc);
if (NULL == if (NULL == pusb_interface_descriptor) {
pusb_interface_descriptor) {
SAM("ERROR: pusb_interface_descriptor is NULL\n"); SAM("ERROR: pusb_interface_descriptor is NULL\n");
return -EFAULT; return -EFAULT;
} }
...@@ -4650,8 +4648,7 @@ case 0: { ...@@ -4650,8 +4648,7 @@ case 0: {
pdata_urb = list_entry(plist_head, pdata_urb = list_entry(plist_head,
struct data_urb, list_head); struct data_urb, list_head);
if (NULL != pdata_urb) { if (NULL != pdata_urb) {
if (NULL != if (NULL != pdata_urb->purb) {
pdata_urb->purb) {
usb_kill_urb(pdata_urb->purb); usb_kill_urb(pdata_urb->purb);
m++; m++;
} }
...@@ -4671,8 +4668,7 @@ case 2: { ...@@ -4671,8 +4668,7 @@ case 2: {
pdata_urb = list_entry(plist_head, pdata_urb = list_entry(plist_head,
struct data_urb, list_head); struct data_urb, list_head);
if (NULL != pdata_urb) { if (NULL != pdata_urb) {
if (NULL != if (NULL != pdata_urb->purb) {
pdata_urb->purb) {
usb_kill_urb(pdata_urb->purb); usb_kill_urb(pdata_urb->purb);
m++; m++;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment