public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: gadget: u_audio: Fixed variable declaration coding style issue
@ 2019-06-13  9:34 Jonas Stenvall
  2019-06-13 14:57 ` Eugeniu Rosca
  0 siblings, 1 reply; 2+ messages in thread
From: Jonas Stenvall @ 2019-06-13  9:34 UTC (permalink / raw)
  To: balbi
  Cc: gregkh, erosca, vladimir_zapolskiy, joshua_frkuska, linux-usb,
	linux-kernel

Fixed a coding style issue, replacing unsigned with unsigned int.

Signed-off-by: Jonas Stenvall <jonas.stenvall.umea@gmail.com>
---
 drivers/usb/gadget/function/u_audio.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/gadget/function/u_audio.c b/drivers/usb/gadget/function/u_audio.c
index fb5ed97572e5..56906d15fb55 100644
--- a/drivers/usb/gadget/function/u_audio.c
+++ b/drivers/usb/gadget/function/u_audio.c
@@ -40,7 +40,7 @@ struct uac_rtd_params {
 
 	void *rbuf;
 
-	unsigned max_psize;	/* MaxPacketSize of endpoint */
+	unsigned int max_psize;	/* MaxPacketSize of endpoint */
 	struct uac_req *ureq;
 
 	spinlock_t lock;
@@ -78,7 +78,7 @@ static const struct snd_pcm_hardware uac_pcm_hardware = {
 
 static void u_audio_iso_complete(struct usb_ep *ep, struct usb_request *req)
 {
-	unsigned pending;
+	unsigned int pending;
 	unsigned long flags, flags2;
 	unsigned int hw_ptr;
 	int status = req->status;
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-06-13 15:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-13  9:34 [PATCH] usb: gadget: u_audio: Fixed variable declaration coding style issue Jonas Stenvall
2019-06-13 14:57 ` Eugeniu Rosca

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox