Re: [PATCH] usb: dwc3: fix wrong bit mask in dwc3_event_type

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi

Sorry, please ignore this patch, I will send another one.

Thanks,
Rui

On Thu, Jun 27, 2013 at 12:47:01AM +0800, Huang Rui wrote:
> In dwc3_event_type, the bit mask should be:
> is_devspec	[0]		1  bit
> type		[7:1]		7  bits
> reserved8_31	[31:8]		24 bits
> 
> Signed-off-by: Huang Rui <ray.huang@xxxxxxx>
> Cc: stable@xxxxxxxxxxxxxxx
> ---
>  drivers/usb/dwc3/core.h |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h
> index c4b5127..00a72e3 100644
> --- a/drivers/usb/dwc3/core.h
> +++ b/drivers/usb/dwc3/core.h
> @@ -758,8 +758,8 @@ struct dwc3 {
>  
>  struct dwc3_event_type {
>  	u32	is_devspec:1;
> -	u32	type:6;
> -	u32	reserved8_31:25;
> +	u32	type:7;
> +	u32	reserved8_31:24;
>  } __packed;
>  
>  #define DWC3_DEPEVT_XFERCOMPLETE	0x01
> -- 
> 1.7.10.4
> 

--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Kernel]     [Kernel Development Newbies]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite Hiking]     [Linux Kernel]     [Linux SCSI]