projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14ccee7
)
PM / devfreq: Convert to using %pOF instead of full_name
author
Rob Herring
<
[email protected]
>
Tue, 18 Jul 2017 21:42:57 +0000
(16:42 -0500)
committer
MyungJoo Ham
<
[email protected]
>
Mon, 28 Aug 2017 00:15:33 +0000
(09:15 +0900)
Now that we have a custom printf format specifier, convert users of
full_name to use %pOF instead. This is preparation to remove storing
of the full path string for each node.
Signed-off-by: Rob Herring <
[email protected]
>
Reviewed-by: Chanwoo Choi <
[email protected]
>
Signed-off-by: MyungJoo Ham <
[email protected]
>
Cc: Kyungmin Park <
[email protected]
>
Cc:
[email protected]
drivers/devfreq/devfreq-event.c
patch
|
blob
|
history
diff --git
a/drivers/devfreq/devfreq-event.c
b/drivers/devfreq/devfreq-event.c
index 8648b32ebc8906c123561eaca53af6e48f655a1a..d67242d87744330a96b2786d5bcd3267e8724c21 100644
(file)
--- a/
drivers/devfreq/devfreq-event.c
+++ b/
drivers/devfreq/devfreq-event.c
@@
-277,8
+277,8
@@
int devfreq_event_get_edev_count(struct device *dev)
sizeof(u32));
if (count < 0) {
dev_err(dev,
- "failed to get the count of devfreq-event in %
s
node\n",
- dev->of_node
->full_name
);
+ "failed to get the count of devfreq-event in %
pOF
node\n",
+ dev->of_node);
return count;
}