1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-02 01:02:19 +02:00

dm: cpu: bmips: rename cpu_desc specific functions

Use a generic name for cpu_desc functions instead of using a specific SoC one.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Álvaro Fernández Rojas
2017-05-16 18:38:59 +02:00
committed by Daniel Schwierzeck
parent d7efa94071
commit 6ffc18cd04

View File

@@ -56,7 +56,7 @@ struct bmips_cpu_priv {
}; };
/* Specific CPU Ops */ /* Specific CPU Ops */
static int bcm6358_get_cpu_desc(struct bmips_cpu_priv *priv, char *buf, static int bmips_short_cpu_desc(struct bmips_cpu_priv *priv, char *buf,
int size) int size)
{ {
unsigned short cpu_id; unsigned short cpu_id;
@@ -72,7 +72,7 @@ static int bcm6358_get_cpu_desc(struct bmips_cpu_priv *priv, char *buf,
return 0; return 0;
} }
static int bcm6328_get_cpu_desc(struct bmips_cpu_priv *priv, char *buf, static int bmips_long_cpu_desc(struct bmips_cpu_priv *priv, char *buf,
int size) int size)
{ {
unsigned int cpu_id; unsigned int cpu_id;
@@ -166,19 +166,19 @@ static int bcm6358_get_cpu_count(struct bmips_cpu_priv *priv)
} }
static const struct bmips_cpu_hw bmips_cpu_bcm6328 = { static const struct bmips_cpu_hw bmips_cpu_bcm6328 = {
.get_cpu_desc = bcm6328_get_cpu_desc, .get_cpu_desc = bmips_long_cpu_desc,
.get_cpu_freq = bcm6328_get_cpu_freq, .get_cpu_freq = bcm6328_get_cpu_freq,
.get_cpu_count = bcm6328_get_cpu_count, .get_cpu_count = bcm6328_get_cpu_count,
}; };
static const struct bmips_cpu_hw bmips_cpu_bcm6358 = { static const struct bmips_cpu_hw bmips_cpu_bcm6358 = {
.get_cpu_desc = bcm6358_get_cpu_desc, .get_cpu_desc = bmips_short_cpu_desc,
.get_cpu_freq = bcm6358_get_cpu_freq, .get_cpu_freq = bcm6358_get_cpu_freq,
.get_cpu_count = bcm6358_get_cpu_count, .get_cpu_count = bcm6358_get_cpu_count,
}; };
static const struct bmips_cpu_hw bmips_cpu_bcm63268 = { static const struct bmips_cpu_hw bmips_cpu_bcm63268 = {
.get_cpu_desc = bcm6328_get_cpu_desc, .get_cpu_desc = bmips_long_cpu_desc,
.get_cpu_freq = bcm63268_get_cpu_freq, .get_cpu_freq = bcm63268_get_cpu_freq,
.get_cpu_count = bcm6358_get_cpu_count, .get_cpu_count = bcm6358_get_cpu_count,
}; };