Browse Source

mei: remove check on pm_runtime_active in __mei_cl_disconnect

Remove bogus check on pm_runtime_active that prevented
disconnection from a client in case the device was resuming
from power gating but not yet active.

Fix regression introduced by
18901357e70ae29e3fd1c58712a6847c2ae52eae
mei: disconnect on connection request timeout

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Tomas Winkler 10 years ago
parent
commit
eead035a35
1 changed files with 0 additions and 3 deletions
  1. 0 3
      drivers/misc/mei/client.c

+ 0 - 3
drivers/misc/mei/client.c

@@ -853,9 +853,6 @@ static int __mei_cl_disconnect(struct mei_cl *cl)
 
 
 	dev = cl->dev;
 	dev = cl->dev;
 
 
-	if (WARN_ON(!pm_runtime_active(dev->dev)))
-		return -EFAULT;
-
 	cl->state = MEI_FILE_DISCONNECTING;
 	cl->state = MEI_FILE_DISCONNECTING;
 
 
 	cb = mei_io_cb_init(cl, MEI_FOP_DISCONNECT, NULL);
 	cb = mei_io_cb_init(cl, MEI_FOP_DISCONNECT, NULL);