1/*
2 * HND SiliconBackplane MIPS/ARM hardware description.
3 *
4 * Copyright 2007, Broadcom Corporation
5 * All Rights Reserved.
6 *
7 * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
8 * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
9 * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
10 * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
11 *
12 * $Id: sbhndcpu.h,v 1.1.1.1 2008/10/15 03:25:54 james26_jang Exp $
13 */
14
15#ifndef _sbhndcpu_h_
16#define _sbhndcpu_h_
17
18#if defined(mips)
19#include <sbhndmips.h>
20#elif defined(__arm__) || defined(__thumb__) || defined(__thumb2__)
21#include <sbhndarm.h>
22#endif
23
24#endif /* _sbhndcpu_h_ */
25