]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
usb: musb: fix musb pointer acqusition in musb_host_finish_resume
authorDaniel Mack <zonque@gmail.com>
Fri, 20 Dec 2013 09:47:15 +0000 (10:47 +0100)
committerFelipe Balbi <balbi@ti.com>
Fri, 20 Dec 2013 21:05:44 +0000 (15:05 -0600)
This is a fall-out from "usb: musb: finish suspend/reset work
independently from musb_hub_control()" that I missed because the
MUSB_POWER register does not have the MUSB_POWER_SUSPENDM bit set on
AM335x platforms; hence the code path was not travelled in my tests.

Signed-off-by: Daniel Mack <zonque@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/musb/musb_virthub.c

index ad417fd0e1a7fdaf997f6b3fa38cbc59ef5a4dfe..966cf95bb45381d474b1c47550731b685ebf7837 100644 (file)
@@ -50,7 +50,7 @@ void musb_host_finish_resume(struct work_struct *work)
        unsigned long flags;
        u8 power;
 
-       musb = container_of(work, struct musb, deassert_reset_work.work);
+       musb = container_of(work, struct musb, finish_resume_work.work);
 
        spin_lock_irqsave(&musb->lock, flags);