1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 10:22:48 +02:00

modified *.h add define

This commit is contained in:
xiangfu 2008-07-13 10:53:56 -04:00
parent 50aa233b9a
commit 3840e0b9d0
3 changed files with 10 additions and 1 deletions

View File

@ -43,4 +43,4 @@ blink_led:led_on.S
clean: clean:
rm -f *.o rm -f *.o
rm -f $(IMAGE)/* rm -f $(IMAGE)/*
rm -f *~

View File

@ -20,4 +20,9 @@
* MA 02111-1307 USA * MA 02111-1307 USA
*/ */
#ifndef __BLINK_LED_H
#define __BLINK_LED_H
int blink_led(); int blink_led();
#define /* __BLINK_LED_H */

View File

@ -14,5 +14,9 @@
* u-boot integration and bad-block skipping (C) 2006 by OpenMoko, Inc. * u-boot integration and bad-block skipping (C) 2006 by OpenMoko, Inc.
* Author: Harald Welte <laforge@openmoko.org> * Author: Harald Welte <laforge@openmoko.org>
*/ */
#ifndef __NAND_READ_H
#define __NAND_READ_H
int nand_read_ll(unsigned char *buf, unsigned long start_addr, int size); int nand_read_ll(unsigned char *buf, unsigned long start_addr, int size);
#endif /* __NAND_READ_H */