Commit f4408a98 authored by Jonas Stenvall's avatar Jonas Stenvall Committed by Felipe Balbi

usb: gadget: u_audio: Fixed variable declaration coding style issue

Fixed a coding style issue, replacing unsigned with unsigned int.
Reviewed-by: default avatarEugeniu Rosca <erosca@de.adit-jv.com>
Signed-off-by: default avatarJonas Stenvall <jonas.stenvall.umea@gmail.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent 4833a94e
...@@ -40,7 +40,7 @@ struct uac_rtd_params { ...@@ -40,7 +40,7 @@ struct uac_rtd_params {
void *rbuf; void *rbuf;
unsigned max_psize; /* MaxPacketSize of endpoint */ unsigned int max_psize; /* MaxPacketSize of endpoint */
struct uac_req *ureq; struct uac_req *ureq;
spinlock_t lock; spinlock_t lock;
...@@ -78,7 +78,7 @@ static const struct snd_pcm_hardware uac_pcm_hardware = { ...@@ -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) static void u_audio_iso_complete(struct usb_ep *ep, struct usb_request *req)
{ {
unsigned pending; unsigned int pending;
unsigned long flags, flags2; unsigned long flags, flags2;
unsigned int hw_ptr; unsigned int hw_ptr;
int status = req->status; int status = req->status;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment