mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 16:02:36 +02:00
76 lines
1.7 KiB
C
76 lines
1.7 KiB
C
/*
|
|
<:copyright-BRCM:2013:DUAL/GPL:standard
|
|
|
|
Copyright (c) 2013 Broadcom
|
|
All Rights Reserved
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License, version 2, as published by
|
|
the Free Software Foundation (the "GPL").
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
|
|
A copy of the GPL is available at http://www.broadcom.com/licenses/GPLv2.php, or by
|
|
writing to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA.
|
|
|
|
:>
|
|
*/
|
|
|
|
#ifndef __BCM_CPU_H
|
|
#define __BCM_CPU_H
|
|
|
|
#if defined(CONFIG_BCM963268)
|
|
#include <63268_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM96838)
|
|
#include <6838_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM963138)
|
|
#include <63138_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM960333)
|
|
#include <60333_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM963381)
|
|
#include <63381_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM963148)
|
|
#include <63148_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM96848)
|
|
#include <6848_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM94908)
|
|
#include <4908_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM96858)
|
|
#include <6858_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM963158)
|
|
#include <63158_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM96846)
|
|
#include <6846_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM947622)
|
|
#include <47622_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM963178)
|
|
#include <63178_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM96856)
|
|
#include <6856_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM96878)
|
|
#include <6878_cpu.h>
|
|
#endif
|
|
#if defined(CONFIG_BCM96855)
|
|
#include <6855_cpu.h>
|
|
#endif
|
|
#endif
|
|
|