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

Commit d01c3c8e authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Staging: cpc-usb: fix build warnings



This fixes some build warnings in the cpc-usb driver.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 5e23f3e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1032,7 +1032,7 @@ static int cpcusb_probe(struct usb_interface *interface,
		goto error;
	}
	info("Allocated memory for %d messages (%lu kbytes)",
	     CPC_MSG_BUF_CNT, (sizeof(CPC_MSG_T) * CPC_MSG_BUF_CNT) / 1000);
	     CPC_MSG_BUF_CNT, (long unsigned int)(sizeof(CPC_MSG_T) * CPC_MSG_BUF_CNT) / 1000);
	memset(chan->buf, 0, sizeof(CPC_MSG_T) * CPC_MSG_BUF_CNT);

	ResetBuffer(chan);