[ARM] pxa/vpac270: fix now invalid bit of UP2OCR
This patch removes write to UP2OCR[DMSTATE] (ex-UP2OCR_DPPUBE) which is invalid on PXA270C5 and later. Signed-off-by: Marek Vasut <marek.vasut@gmail.com> Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
This commit is contained in:
parent
bcc399bb49
commit
fb25cb3309
|
@ -359,9 +359,9 @@ static struct platform_device vpac270_gpio_vbus = {
|
|||
static void vpac270_udc_command(int cmd)
|
||||
{
|
||||
if (cmd == PXA2XX_UDC_CMD_CONNECT)
|
||||
UP2OCR |= UP2OCR_HXOE | UP2OCR_DPPUE | UP2OCR_DPPUBE;
|
||||
UP2OCR = UP2OCR_HXOE | UP2OCR_DPPUE;
|
||||
else if (cmd == PXA2XX_UDC_CMD_DISCONNECT)
|
||||
UP2OCR &= ~(UP2OCR_HXOE | UP2OCR_DPPUE | UP2OCR_DPPUBE);
|
||||
UP2OCR = UP2OCR_HXOE;
|
||||
}
|
||||
|
||||
static struct pxa2xx_udc_mach_info vpac270_udc_info __initdata = {
|
||||
|
|
Loading…
Reference in New Issue