mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
33c0259092
Clock drivers for Armada AP and Armada CP use the same function to generate unique clock name. A third drivers is coming with the same need, so it's time to move this function in a common file. Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com> Link: https://lkml.kernel.org/r/20190710134346.30239-3-gregory.clement@bootlin.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
11 lines
239 B
C
11 lines
239 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
#ifndef __ARMADA_AP_CP_HELPER_H
|
|
#define __ARMADA_AP_CP_HELPER_H
|
|
|
|
struct device;
|
|
struct device_node;
|
|
|
|
char *ap_cp_unique_name(struct device *dev, struct device_node *np,
|
|
const char *name);
|
|
#endif
|