mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 10:04:04 +02:00
The DT core will call of_platform_default_populate, so it is not necessary for machine specific code to call it unless there are custom match entries, auxdata or parent device. Neither of those apply here, so remove the call. Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Tested-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Rob Herring (Arm) <robh@kernel.org> Link: https://lore.kernel.org/r/20260105-at91-probe-v3-3-594013ff2965@kernel.org Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
24 lines
501 B
C
24 lines
501 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Setup code for AT91SAM9
|
|
*
|
|
* Copyright (C) 2011 Atmel,
|
|
* 2011 Nicolas Ferre <nicolas.ferre@atmel.com>
|
|
*/
|
|
|
|
#include <asm/mach/arch.h>
|
|
#include <asm/system_misc.h>
|
|
|
|
#include "generic.h"
|
|
|
|
static const char *const at91_dt_board_compat[] __initconst = {
|
|
"atmel,at91sam9",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM9")
|
|
/* Maintainer: Atmel */
|
|
.init_late = at91sam9_pm_init,
|
|
.dt_compat = at91_dt_board_compat,
|
|
MACHINE_END
|