If pm_runtime_get_sync() fails, there's no need to set the device active
again. Also, in the same case to return the usage_count to zero,
pm_runtime_put_noidle() is enough.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
 
        rval = pm_runtime_get_sync(&client->dev);
        if (rval < 0) {
-               if (rval != -EBUSY && rval != -EAGAIN)
-                       pm_runtime_set_active(&client->dev);
                pm_runtime_put_noidle(&client->dev);
 
                return rval;
 
        rval = pm_runtime_get_sync(dev);
        if (rval < 0) {
-               if (rval != -EBUSY && rval != -EAGAIN)
-                       pm_runtime_set_active(&client->dev);
-               pm_runtime_put(dev);
+               pm_runtime_put_noidle(dev);
+
                return -EAGAIN;
        }