mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 23:14:31 +08:00
1fe8150d3b
Replace of_get_property() and of_translate_address() calls with a single call to of_address_to_resource(). Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20230406010738.1269781-1-robh@kernel.org Signed-off-by: Stephen Boyd <sboyd@kernel.org>
29 lines
612 B
C
29 lines
612 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Marvell Armada AP and CP110 helper
|
|
*
|
|
* Copyright (C) 2018 Marvell
|
|
*
|
|
* Gregory Clement <gregory.clement@bootlin.com>
|
|
*
|
|
*/
|
|
|
|
#include "armada_ap_cp_helper.h"
|
|
#include <linux/device.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_address.h>
|
|
|
|
char *ap_cp_unique_name(struct device *dev, struct device_node *np,
|
|
const char *name)
|
|
{
|
|
struct resource res;
|
|
|
|
/* Do not create a name if there is no clock */
|
|
if (!name)
|
|
return NULL;
|
|
|
|
of_address_to_resource(np, 0, &res);
|
|
return devm_kasprintf(dev, GFP_KERNEL, "%llx-%s",
|
|
(unsigned long long)res.start, name);
|
|
}
|