mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-25 15:01:34 +02:00
27 lines
541 B
C
27 lines
541 B
C
/*
|
|
* linux/include/asm-mips/jzsoc.h
|
|
*
|
|
* Ingenic's JZXXXX SoC common include.
|
|
*
|
|
* Copyright (C) 2006 - 2008 Ingenic Semiconductor Inc.
|
|
*
|
|
* Author: <jlwei@ingenic.cn>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __ASM_JZSOC_H__
|
|
#define __ASM_JZSOC_H__
|
|
|
|
/*
|
|
* SoC include
|
|
*/
|
|
|
|
#ifdef CONFIG_SOC_JZ4740
|
|
#include <asm/mach-jz4740/jz4740.h>
|
|
#endif
|
|
|
|
#endif /* __ASM_JZSOC_H__ */
|