mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
d4b564a524
The DT of_device.h and of_platform.h date back to the separate of_platform_bus_type before it was merged into the regular platform bus. As part of that merge prepping Arm DT support 13 years ago, they "temporarily" include each other. They also include platform_device.h and of.h. As a result, there's a pretty much random mix of those include files used throughout the tree. In order to detangle these headers and replace the implicit includes with struct declarations, users need to explicitly include the correct includes. A couple of other includes are unused and can be dropped too. Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20230717225429.3211307-1-robh@kernel.org Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
17 lines
384 B
C
17 lines
384 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Setup code for SAMv7x
|
|
*
|
|
* Copyright (C) 2013 Atmel,
|
|
* 2016 Andras Szemzo <szemzo.andras@gmail.com>
|
|
*/
|
|
#include <asm/mach/arch.h>
|
|
|
|
static const char *const samv7_dt_board_compat[] __initconst = {
|
|
"atmel,samv7",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(samv7_dt, "Atmel SAMV7")
|
|
.dt_compat = samv7_dt_board_compat,
|
|
MACHINE_END
|