Fix checkpatch.pl "WARNING: line over 80 characters"

Signed-off-by: Tiago Koji Castro Shibata <tiago.shib...@gmail.com>
---
 drivers/staging/emxx_udc/emxx_udc.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/emxx_udc/emxx_udc.c 
b/drivers/staging/emxx_udc/emxx_udc.c
index 77b242e09932..5abb5922ad7d 100644
--- a/drivers/staging/emxx_udc/emxx_udc.c
+++ b/drivers/staging/emxx_udc/emxx_udc.c
@@ -912,7 +912,8 @@ static int _nbu2ss_epn_out_pio(
        if (data > 0) {
                /*---------------------------------------------------------*/
                /* Copy of fraction byte */
-               Temp32.dw = _nbu2ss_readl(&preg->EP_REGS[ep->epnum - 
1].EP_READ);
+               Temp32.dw =
+               _nbu2ss_readl(&preg->EP_REGS[ep->epnum - 1].EP_READ);
                for (i = 0 ; i < data ; i++)
                        pBuf32->byte.DATA[i] = Temp32.byte.DATA[i];
                result += data;
@@ -2651,7 +2652,8 @@ static int nbu2ss_ep_queue(
        }
 
        req = container_of(_req, struct nbu2ss_req, req);
-       if (unlikely(!_req->complete || !_req->buf || 
!list_empty(&req->queue))) {
+       if (unlikely(!_req->complete || !_req->buf ||
+                    !list_empty(&req->queue))) {
                if (!_req->complete)
                        pr_err("udc: %s --- !_req->complete\n", __func__);
 
-- 
2.12.2

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to