Commit 9c6423aa authored by Alex Elder's avatar Alex Elder Committed by Matt Porter

ARM: bcm281xx: symbol cleanup

This patch renames a few symbols that needlessly used "11351" rather
than "281xx" in their names.

Support for the bcm11351 board is being removed from the kernel, and
the family of boards is more properly referred to as "bcm281xx".
Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Reviewed-by: default avatarMarkus Mayer <markus.mayer@linaro.org>
Signed-off-by: default avatarMatt Porter <mporter@linaro.org>
parent 6d0abeca
......@@ -65,10 +65,13 @@ static void __init board_init(void)
kona_l2_cache_init();
}
static const char * const bcm11351_dt_compat[] = { "brcm,bcm11351", NULL, };
static const char * const bcm281xx_dt_compat[] = {
"brcm,bcm11351", /* Have to use the first number upstreamed */
NULL,
};
DT_MACHINE_START(BCM11351_DT, "BCM281xx Broadcom Application Processor")
DT_MACHINE_START(BCM281XX_DT, "BCM281xx Broadcom Application Processor")
.init_machine = board_init,
.restart = bcm_kona_restart,
.dt_compat = bcm11351_dt_compat,
.dt_compat = bcm281xx_dt_compat,
MACHINE_END
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment