to make u-boot work for fat32 filesystem
[jz_uboot.git] / board / ns9750dev / led.c
blobb85c869d85b421ac93474812d0fafef2ec71557f
1 /***********************************************************************
3 * Copyright (C) 2004 by FS Forth-Systeme GmbH.
4 * All rights reserved.
6 * $Id: led.c,v 1.1 2004/02/16 10:37:20 mpietrek Exp $
7 * @Author: Markus Pietrek
8 * @Descr: Defines helper functions for toggeling LEDs
9 * @Usage:
10 * @References: [1]
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
27 ***********************************************************************/
29 #ifdef CONFIG_STATUS_LED
31 #include <ns9750_bbus.h>
33 static inline void __led_init( led_id_t mask, int state )
35 XXXX;
38 static inline void __led_toggle( led_id_t mask )
42 static inline void __led_set( led_id_t mask, int state )
46 #endif /* CONFIG_STATUS_LED */