.. | .. |
---|
135 | 135 | |
---|
136 | 136 | comp = _lookup_component(cclk->comp_nodes[i]); |
---|
137 | 137 | if (!comp) { |
---|
138 | | - pr_debug("component %s not ready for %s, retry\n", |
---|
139 | | - cclk->comp_nodes[i]->name, node->name); |
---|
| 138 | + pr_debug("component %s not ready for %pOFn, retry\n", |
---|
| 139 | + cclk->comp_nodes[i]->name, node); |
---|
140 | 140 | if (!ti_clk_retry_init(node, hw, |
---|
141 | 141 | _register_composite)) |
---|
142 | 142 | return; |
---|
.. | .. |
---|
144 | 144 | goto cleanup; |
---|
145 | 145 | } |
---|
146 | 146 | if (cclk->comp_clks[comp->type] != NULL) { |
---|
147 | | - pr_err("duplicate component types for %s (%s)!\n", |
---|
148 | | - node->name, component_clk_types[comp->type]); |
---|
| 147 | + pr_err("duplicate component types for %pOFn (%s)!\n", |
---|
| 148 | + node, component_clk_types[comp->type]); |
---|
149 | 149 | goto cleanup; |
---|
150 | 150 | } |
---|
151 | 151 | |
---|
.. | .. |
---|
168 | 168 | } |
---|
169 | 169 | |
---|
170 | 170 | if (!num_parents) { |
---|
171 | | - pr_err("%s: no parents found for %s!\n", __func__, node->name); |
---|
| 171 | + pr_err("%s: no parents found for %pOFn!\n", __func__, node); |
---|
172 | 172 | goto cleanup; |
---|
173 | 173 | } |
---|
174 | 174 | |
---|
.. | .. |
---|
213 | 213 | num_clks = of_clk_get_parent_count(node); |
---|
214 | 214 | |
---|
215 | 215 | if (!num_clks) { |
---|
216 | | - pr_err("composite clk %s must have component(s)\n", node->name); |
---|
| 216 | + pr_err("composite clk %pOFn must have component(s)\n", node); |
---|
217 | 217 | return; |
---|
218 | 218 | } |
---|
219 | 219 | |
---|
.. | .. |
---|
249 | 249 | num_parents = of_clk_get_parent_count(node); |
---|
250 | 250 | |
---|
251 | 251 | if (!num_parents) { |
---|
252 | | - pr_err("component-clock %s must have parent(s)\n", node->name); |
---|
| 252 | + pr_err("component-clock %pOFn must have parent(s)\n", node); |
---|
253 | 253 | return -EINVAL; |
---|
254 | 254 | } |
---|
255 | 255 | |
---|