Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit af1550cc authored by Afonso Bordado's avatar Afonso Bordado Committed by Greg Kroah-Hartman
Browse files

staging: emxx_udc: Fix CamelCase variable name



Changes from CamelCase to a kernel format

Signed-off-by: default avatarAfonso Bordado <afonsobordado@az8.co>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7e026bfa
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -553,19 +553,19 @@ static void _nbu2ss_dma_unmap_single(

/*-------------------------------------------------------------------------*/
/* Endpoint 0 OUT Transfer (PIO) */
static int ep0_out_pio(struct nbu2ss_udc *udc, u8 *pBuf, u32 length)
static int ep0_out_pio(struct nbu2ss_udc *udc, u8 *buf, u32 length)
{
	u32		i;
	u32 numreads = length / sizeof(u32);
	union usb_reg_access *pBuf32 = (union usb_reg_access *)pBuf;
	union usb_reg_access *buf32 = (union usb_reg_access *)buf;

	if (!numreads)
		return 0;

	/* PIO Read */
	for (i = 0; i < numreads; i++) {
		pBuf32->dw = _nbu2ss_readl(&udc->p_regs->EP0_READ);
		pBuf32++;
		buf32->dw = _nbu2ss_readl(&udc->p_regs->EP0_READ);
		buf32++;
	}

	return  numreads * sizeof(u32);