Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: emxx_udc: fix alignment issues

Three function calls can now be properly formatted inside the 100
characters limit.

Signed-off-by: Harold Mertzweiller <harold@mrtz.fr>
Link: https://lore.kernel.org/r/20210524152128.20519-1-harold@mrtz.fr
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Harold Mertzweiller and committed by
Greg Kroah-Hartman
21e4614b b67decf8

+4 -7
+4 -7
drivers/staging/emxx_udc/emxx_udc.c
··· 1073 1073 i_word_length = length / sizeof(u32); 1074 1074 if (i_word_length > 0) { 1075 1075 for (i = 0; i < i_word_length; i++) { 1076 - _nbu2ss_writel( 1077 - &preg->EP_REGS[ep->epnum - 1].EP_WRITE, 1078 - p_buf_32->dw); 1076 + _nbu2ss_writel(&preg->EP_REGS[ep->epnum - 1].EP_WRITE, 1077 + p_buf_32->dw); 1079 1078 1080 1079 p_buf_32++; 1081 1080 } ··· 1224 1225 return; 1225 1226 1226 1227 if (ep->epnum > 0) { 1227 - length = _nbu2ss_readl( 1228 - &ep->udc->p_regs->EP_REGS[ep->epnum - 1].EP_LEN_DCNT); 1228 + length = _nbu2ss_readl(&ep->udc->p_regs->EP_REGS[ep->epnum - 1].EP_LEN_DCNT); 1229 1229 1230 1230 length &= EPN_LDATA; 1231 1231 if (length < ep->ep.maxpacket) ··· 1460 1462 for (limit_cnt = 0 1461 1463 ; limit_cnt < IN_DATA_EMPTY_COUNT 1462 1464 ; limit_cnt++) { 1463 - regdata = _nbu2ss_readl( 1464 - &preg->EP_REGS[ep->epnum - 1].EP_STATUS); 1465 + regdata = _nbu2ss_readl(&preg->EP_REGS[ep->epnum - 1].EP_STATUS); 1465 1466 1466 1467 if ((regdata & EPN_IN_DATA) == 0) 1467 1468 break;