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

staging: emxx_udc: Fix the format of a parameter list

The closing parenthesis of a multiline parameter list looks better
in the same line as the last parameter.

The comma that separates parameters should be at the end of the line.

Signed-off-by: Frank A. Cancio Bello <frank@generalsoftwareinc.com>
Link: https://lore.kernel.org/r/20191028165906.tv5zxjiqwjthygnq@linux-kernel-dev
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Frank A. Cancio Bello and committed by
Greg Kroah-Hartman
883afa2d 4f83b7dd

+2 -3
+2 -3
drivers/staging/emxx_udc/emxx_udc.c
··· 1072 1072 if (i_word_length > 0) { 1073 1073 for (i = 0; i < i_word_length; i++) { 1074 1074 _nbu2ss_writel( 1075 - &preg->EP_REGS[ep->epnum - 1].EP_WRITE 1076 - , p_buf_32->dw 1077 - ); 1075 + &preg->EP_REGS[ep->epnum - 1].EP_WRITE, 1076 + p_buf_32->dw); 1078 1077 1079 1078 p_buf_32++; 1080 1079 }