mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
misc: Convert to using %pOF instead of full_name
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 <robh@kernel.org> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
579e9a3072
commit
34d0eb50bd
2 changed files with 10 additions and 10 deletions
|
@ -196,15 +196,15 @@ static int sram_reserve_regions(struct sram_dev *sram, struct resource *res)
|
|||
ret = of_address_to_resource(child, 0, &child_res);
|
||||
if (ret < 0) {
|
||||
dev_err(sram->dev,
|
||||
"could not get address for node %s\n",
|
||||
child->full_name);
|
||||
"could not get address for node %pOF\n",
|
||||
child);
|
||||
goto err_chunks;
|
||||
}
|
||||
|
||||
if (child_res.start < res->start || child_res.end > res->end) {
|
||||
dev_err(sram->dev,
|
||||
"reserved block %s outside the sram area\n",
|
||||
child->full_name);
|
||||
"reserved block %pOF outside the sram area\n",
|
||||
child);
|
||||
ret = -EINVAL;
|
||||
goto err_chunks;
|
||||
}
|
||||
|
@ -230,8 +230,8 @@ static int sram_reserve_regions(struct sram_dev *sram, struct resource *res)
|
|||
ret = of_property_read_string(child, "label", &label);
|
||||
if (ret && ret != -EINVAL) {
|
||||
dev_err(sram->dev,
|
||||
"%s has invalid label name\n",
|
||||
child->full_name);
|
||||
"%pOF has invalid label name\n",
|
||||
child);
|
||||
goto err_chunks;
|
||||
}
|
||||
if (!label)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue