]> Git Repo - linux.git/blob - arch/arm/mach-imx/mach-imxrt.c
mptcp: ensure snd_nxt is properly initialized on connect
[linux.git] / arch / arm / mach-imx / mach-imxrt.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2019
4  * Author(s): Giulio Benetti <[email protected]>
5  */
6
7 #include <linux/kernel.h>
8 #include <asm/mach/arch.h>
9 #include <asm/v7m.h>
10
11 static const char *const imxrt_compat[] __initconst = {
12         "fsl,imxrt1050",
13         NULL
14 };
15
16 DT_MACHINE_START(IMXRTDT, "IMXRT (Device Tree Support)")
17         .dt_compat = imxrt_compat,
18         .restart = armv7m_restart,
19 MACHINE_END
This page took 0.032352 seconds and 4 git commands to generate.