Re: [PATCH] drivers: musb_gadget: Save endpoint desc to usb_ep->desc

2022-01-18 Thread Tom Rini
On Tue, Nov 16, 2021 at 08:30:12AM +0800, qianfangui...@qq.com wrote: > From: qianfan Zhao > > Fix fastboot flash bug. > > If the downloading file size is equal to the partition size, "fastboot > flash" can't work, at least in sunxi platform, because used an > uninitalized point: ep->desc. > >

Re: [PATCH] drivers: musb_gadget: Save endpoint desc to usb_ep->desc

2021-11-15 Thread Sean Anderson
On 11/15/21 7:30 PM, qianfangui...@qq.com wrote: From: qianfan Zhao Fix fastboot flash bug. If the downloading file size is equal to the partition size, "fastboot flash" can't work, at least in sunxi platform, because used an uninitalized point: ep->desc. This patch also fixed 'data abort' bu

[PATCH] drivers: musb_gadget: Save endpoint desc to usb_ep->desc

2021-11-15 Thread qianfanguijin
From: qianfan Zhao Fix fastboot flash bug. If the downloading file size is equal to the partition size, "fastboot flash" can't work, at least in sunxi platform, because used an uninitalized point: ep->desc. This patch also fixed 'data abort' bug in am335x platform. Reproduce: fastboot flash lo

Re: [PATCH] drivers: musb_gadget: Save endpoint desc to usb_ep->desc

2021-11-15 Thread Sean Anderson
On 11/7/21 10:04 PM, qianfangui...@qq.com wrote: From: qianfan Zhao Fix fastboot flash bug. If the downloading file size is equal to the partition size, "fastboot flash" can't work, at least in sunxi platform, because used an uninitalized point: ep->desc. Reproduce: fastboot flash loader1 spl

[PATCH] drivers: musb_gadget: Save endpoint desc to usb_ep->desc

2021-11-07 Thread qianfanguijin
From: qianfan Zhao Fix fastboot flash bug. If the downloading file size is equal to the partition size, "fastboot flash" can't work, at least in sunxi platform, because used an uninitalized point: ep->desc. Reproduce: fastboot flash loader1 spl/sunxi-spl.bin. Signed-off-by: qianfan Zhao ---