Linux Audio

Check our new training course

Real-Time Linux with PREEMPT_RT training

Feb 18-20, 2025
Register
Loading...
 1// SPDX-License-Identifier: GPL-2.0
 2/*
 3 * r8a73a4 processor support
 4 *
 5 * Copyright (C) 2013  Renesas Solutions Corp.
 6 * Copyright (C) 2013  Magnus Damm
 7 */
 8
 9#include <linux/init.h>
10
11#include <asm/mach/arch.h>
12
13#include "common.h"
14
15static const char *const r8a73a4_boards_compat_dt[] __initconst = {
16	"renesas,r8a73a4",
17	NULL
18};
19
20DT_MACHINE_START(R8A73A4_DT, "Generic R8A73A4 (Flattened Device Tree)")
21	.init_late	= shmobile_init_late,
22	.dt_compat	= r8a73a4_boards_compat_dt,
23MACHINE_END