cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

airoha.c (372B)


      1// SPDX-License-Identifier: GPL-2.0-or-later
      2/*
      3 * Device Tree support for Airoha SoCs
      4 *
      5 * Copyright (c) 2022 Felix Fietkau <nbd@nbd.name>
      6 */
      7#include <asm/mach/arch.h>
      8
      9static const char * const airoha_board_dt_compat[] = {
     10	"airoha,en7523",
     11	NULL,
     12};
     13
     14DT_MACHINE_START(MEDIATEK_DT, "Airoha Cortex-A53 (Device Tree)")
     15	.dt_compat	= airoha_board_dt_compat,
     16MACHINE_END