Make the code more readable by using a local variable.
Signed-off-by: Gilad Ben-Yossef <[email protected]>
---
drivers/staging/ccree/ssi_pm.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/ccree/ssi_pm.c b/drivers/staging/ccree/ssi_pm.c
index e1bc4c5..d60143c 100644
--- a/drivers/staging/ccree/ssi_pm.c
+++ b/drivers/staging/ccree/ssi_pm.c
@@ -90,20 +90,24 @@ int cc_pm_resume(struct device *dev)
int cc_pm_get(struct device *dev)
{
int rc = 0;
+ struct ssi_drvdata *drvdata =
+ (struct ssi_drvdata *)dev_get_drvdata(dev);
- if (cc_req_queue_suspended((struct ssi_drvdata *)dev_get_drvdata(dev)))
{
+ if (cc_req_queue_suspended(drvdata))
rc = pm_runtime_get_sync(dev);
- } else {
+ else
pm_runtime_get_noresume(dev);
- }
+
return rc;
}
int cc_pm_put_suspend(struct device *dev)
{
int rc = 0;
+ struct ssi_drvdata *drvdata =
+ (struct ssi_drvdata *)dev_get_drvdata(dev);
- if (!cc_req_queue_suspended((struct ssi_drvdata
*)dev_get_drvdata(dev))) {
+ if (!cc_req_queue_suspended(drvdata)) {
pm_runtime_mark_last_busy(dev);
rc = pm_runtime_put_autosuspend(dev);
} else {
--
2.7.4
_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel