source: rtems/c/src/lib/libcpu/arm/s3c24xx/include/s3c24xx.h @ c193baad

4.104.115
Last change on this file since c193baad was dbdb0255, checked in by Joel Sherrill <joel.sherrill@…>, on 05/06/08 at 20:58:05

2008-05-06 Ray Xu <rayx.cn@…>

  • Makefile.am, configure.ac, preinstall.am, s3c2400/include/s3c2400.h: Add CPU type s3c2410. Add a new s3c24xx common file shared between s3c2400 and s3c2410. Most content is moved from s3c2400 now. Some were changed to include <s3c24xx.h> instead of <s3c2400.h>.
  • s3c2410/include/s3c2410.h, s3c2410/irq/bsp_irq_asm.S, s3c2410/irq/irq.h, s3c24xx/clock/clockdrv.c, s3c24xx/clock/support.c, s3c24xx/include/s3c24xx.h, s3c24xx/irq/bsp_irq_init.c, s3c24xx/irq/irq.c, s3c24xx/irq/irq.h, s3c24xx/timer/timer.c: New files.
  • Property mode set to 100644
File size: 347 bytes
Line 
1/************************************************
2 * NAME     : s3c2400.h
3 * Version  : 4.18.2008
4 *
5 * share code for different Samsung CPU
6 ************************************************/
7
8#ifndef S3C24XX_H_
9#define S3C24XX_H_
10
11#ifdef CPU_S3C2400
12#include<s3c2400.h>
13#elif defined CPU_S3C2410
14#include<s3c2410.h>
15#endif
16
17#endif /*S3C24XX_H_*/
Note: See TracBrowser for help on using the repository browser.