mirror of
https://github.com/torvalds/linux.git
synced 2026-05-29 17:43:52 +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
516 B
C
24 lines
516 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Setup code for SAM9X7.
|
|
*
|
|
* Copyright (C) 2023 Microchip Technology Inc. and its subsidiaries
|
|
*
|
|
* Author: Varshini Rajendran <varshini.rajendran@microchip.com>
|
|
*/
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
#include "generic.h"
|
|
|
|
static const char * const sam9x7_dt_board_compat[] __initconst = {
|
|
"microchip,sam9x7",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(sam9x7_dt, "Microchip SAM9X7")
|
|
/* Maintainer: Microchip */
|
|
.init_late = sam9x7_pm_init,
|
|
.dt_compat = sam9x7_dt_board_compat,
|
|
MACHINE_END
|