projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
215c330
)
intel_scu_ipc: return -EIO for error condition in busy_loop
author
Hong Liu
<hong.liu@intel.com>
Mon, 26 Jul 2010 09:06:12 +0000
(10:06 +0100)
committer
Matthew Garrett
<mjg@redhat.com>
Tue, 3 Aug 2010 13:50:33 +0000
(09:50 -0400)
Signed-off-by: Hong Liu <hong.liu@intel.com>
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
drivers/platform/x86/intel_scu_ipc.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/platform/x86/intel_scu_ipc.c
b/drivers/platform/x86/intel_scu_ipc.c
index 84a2d4bfdec81dbac93e57a04d5e0039c9907e26..23b6d46a4b8faa71abafc338084b780cd0d9e499 100644
(file)
--- a/
drivers/platform/x86/intel_scu_ipc.c
+++ b/
drivers/platform/x86/intel_scu_ipc.c
@@
-148,7
+148,10
@@
static inline int busy_loop(void) /* Wait till scu status is busy */
return -ETIMEDOUT;
}
}
- return (status >> 1) & 1;
+ if ((status >> 1) & 1)
+ return -EIO;
+
+ return 0;
}
/* Read/Write power control(PMIC in Langwell, MSIC in PenWell) registers */