projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
749e8be
)
thermal: ti-soc-thermal: Use SIMPLE_DEV_PM_OPS macro
author
Jingoo Han
<jg1.han@samsung.com>
Thu, 27 Feb 2014 11:43:02 +0000
(20:43 +0900)
committer
Zhang Rui
<rui.zhang@intel.com>
Tue, 8 Apr 2014 01:01:38 +0000
(09:01 +0800)
Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
drivers/thermal/ti-soc-thermal/ti-bandgap.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/thermal/ti-soc-thermal/ti-bandgap.c
b/drivers/thermal/ti-soc-thermal/ti-bandgap.c
index 74c0e3474d6e935a7d16bf29e6304e59b9a01a1f..3ab12ee359b79325751d6d1671dda2850ec8b019 100644
(file)
--- a/
drivers/thermal/ti-soc-thermal/ti-bandgap.c
+++ b/
drivers/thermal/ti-soc-thermal/ti-bandgap.c
@@
-1500,10
+1500,8
@@
static int ti_bandgap_resume(struct device *dev)
return ti_bandgap_restore_ctxt(bgp);
}
-static const struct dev_pm_ops ti_bandgap_dev_pm_ops = {
- SET_SYSTEM_SLEEP_PM_OPS(ti_bandgap_suspend,
- ti_bandgap_resume)
-};
+static SIMPLE_DEV_PM_OPS(ti_bandgap_dev_pm_ops, ti_bandgap_suspend,
+ ti_bandgap_resume);
#define DEV_PM_OPS (&ti_bandgap_dev_pm_ops)
#else