diff options
| author | wdenk <wdenk> | 2004-03-14 22:25:36 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2004-03-14 22:25:36 +0000 | 
| commit | 42dfe7a1844cbad7114038aaf03828acb7a84414 (patch) | |
| tree | d33893d34d2a97aa23257703733dbc9d86d48278 /board/ssv/common/cmd_sled.c | |
| parent | 855a496fe9ba431772f1ff1aef21a5c001288bb0 (diff) | |
| download | olio-uboot-2014.01-42dfe7a1844cbad7114038aaf03828acb7a84414.tar.xz olio-uboot-2014.01-42dfe7a1844cbad7114038aaf03828acb7a84414.zip | |
Code cleanup; make several boards compile & link.LABEL_2004_03_14_2340
Diffstat (limited to 'board/ssv/common/cmd_sled.c')
| -rw-r--r-- | board/ssv/common/cmd_sled.c | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/board/ssv/common/cmd_sled.c b/board/ssv/common/cmd_sled.c index 6ca054c30..d61fa3ed4 100644 --- a/board/ssv/common/cmd_sled.c +++ b/board/ssv/common/cmd_sled.c @@ -12,7 +12,7 @@   *   * This program is distributed in the hope that it will be useful,   * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the   * GNU General Public License for more details.   *   * You should have received a copy of the GNU General Public License @@ -28,20 +28,20 @@  #if	defined(CONFIG_STATUS_LED)  /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - * !!!!!       Q u i c k   &   D i r t y   H a c k       !!!!! + * !!!!!       Q u i c k   &   D i r t y   H a c k	 !!!!!   * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - * !!!!!                                                 !!!!! - * !!!!! Next type definition was coming from original   !!!!! - * !!!!! status LED driver drivers/status_led.c and      !!!!! - * !!!!! should exported for using here.                 !!!!! - * !!!!!                                                 !!!!! + * !!!!!						 !!!!! + * !!!!! Next type definition was coming from original	 !!!!! + * !!!!! status LED driver drivers/status_led.c and	 !!!!! + * !!!!! should exported for using here.		 !!!!! + * !!!!!						 !!!!!   * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */  typedef struct { -        led_id_t mask; -        int state; -        int period; -        int cnt; +	led_id_t mask; +	int state; +	int period; +	int cnt;  } led_dev_t;  extern led_dev_t led_dev[]; @@ -141,18 +141,18 @@ int do_sled (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  #ifdef	STATUS_LED_RED  #ifdef	STATUS_LED_YELLOW  #ifdef	STATUS_LED_GREEN -#define	__NAME_STR		"    - name: boot|red|yellow|green\n" +#define __NAME_STR		"    - name: boot|red|yellow|green\n"  #else -#define	__NAME_STR		"    - name: boot|red|yellow\n" +#define __NAME_STR		"    - name: boot|red|yellow\n"  #endif  #else -#define	__NAME_STR		"    - name: boot|red\n" +#define __NAME_STR		"    - name: boot|red\n"  #endif  #else -#define	__NAME_STR		"    - name: boot\n" +#define __NAME_STR		"    - name: boot\n"  #endif  #else -#define	__NAME_STR		"    - name: (no such defined)\n" +#define __NAME_STR		"    - name: (no such defined)\n"  #endif  U_BOOT_CMD (sled, 3, 0, do_sled, |