Prev: drivers/staging/rtl8192u: Hoist assign from if
Next: drivers/staging/rtl8192su: Hoist assign from if
From: Greg KH on 28 Apr 2010 14:40 On Wed, Mar 24, 2010 at 10:17:06PM -0700, Joe Perches wrote: > @@ -718,7 +724,8 @@ PIPEnsSendBulkOut( > s_nsBulkOutIoCompleteWrite, > pContext); > > - if((status = usb_submit_urb(pUrb, GFP_ATOMIC))!=0) > + status = usb_submit_urb(pUrb, GFP_ATOMIC); > + if (status!=0) And again... -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |