Commit 9ceeb5e0 authored by Tony Lindgren's avatar Tony Lindgren

musb_hdrc: Search and replace bSetAddress with set_address

Search and replace bSetAddress with set_address
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent a5b2cb5a
...@@ -239,7 +239,7 @@ __acquires(musb->lock) ...@@ -239,7 +239,7 @@ __acquires(musb->lock)
switch (ctrlrequest->bRequest) { switch (ctrlrequest->bRequest) {
case USB_REQ_SET_ADDRESS: case USB_REQ_SET_ADDRESS:
/* change it after the status stage */ /* change it after the status stage */
musb->bSetAddress = TRUE; musb->set_address = TRUE;
musb->address = (u8) (ctrlrequest->wValue & 0x7f); musb->address = (u8) (ctrlrequest->wValue & 0x7f);
handled = 1; handled = 1;
break; break;
...@@ -559,7 +559,7 @@ musb_read_setup(struct musb *musb, struct usb_ctrlrequest *req) ...@@ -559,7 +559,7 @@ musb_read_setup(struct musb *musb, struct usb_ctrlrequest *req)
* the TX FIFO right away, and give the controller a moment * the TX FIFO right away, and give the controller a moment
* to switch modes... * to switch modes...
*/ */
musb->bSetAddress = FALSE; musb->set_address = FALSE;
musb->ackpend = MGC_M_CSR0_P_SVDRXPKTRDY; musb->ackpend = MGC_M_CSR0_P_SVDRXPKTRDY;
if (req->wLength == 0) { if (req->wLength == 0) {
if (req->bRequestType & USB_DIR_IN) if (req->bRequestType & USB_DIR_IN)
...@@ -661,8 +661,8 @@ irqreturn_t musb_g_ep0_irq(struct musb *musb) ...@@ -661,8 +661,8 @@ irqreturn_t musb_g_ep0_irq(struct musb *musb)
* we get 10 msec to receive this irq... until this * we get 10 msec to receive this irq... until this
* is done we won't see the next packet. * is done we won't see the next packet.
*/ */
if (musb->bSetAddress) { if (musb->set_address) {
musb->bSetAddress = FALSE; musb->set_address = FALSE;
musb_writeb(mbase, MGC_O_HDRC_FADDR, musb->address); musb_writeb(mbase, MGC_O_HDRC_FADDR, musb->address);
} }
......
...@@ -437,7 +437,7 @@ struct musb { ...@@ -437,7 +437,7 @@ struct musb {
unsigned is_self_powered:1; unsigned is_self_powered:1;
unsigned is_bus_powered:1; unsigned is_bus_powered:1;
unsigned bSetAddress:1; unsigned set_address:1;
unsigned test_mode:1; unsigned test_mode:1;
unsigned softconnect:1; unsigned softconnect:1;
......
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