common.h (18d66533ac773f59efc93e5c19971fad5e6af82f) | common.h (0098e179e1afacb3cf595c67a98b8739dc7edcde) |
---|---|
1/* 2 * (C) Copyright 2000-2009 3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8#ifndef __COMMON_H_ --- 272 unchanged lines hidden (view full) --- 281 * terminated, Memory will be allocated for the command in that case. 282 * 283 * @param cmd List of commands to run, each separated bu semicolon 284 * @param len Length of commands excluding terminator if known (-1 if not) 285 * @param flag Execution flags (CMD_FLAG_...) 286 * @return 0 on success, or != 0 on error. 287 */ 288int run_command_list(const char *cmd, int len, int flag); | 1/* 2 * (C) Copyright 2000-2009 3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8#ifndef __COMMON_H_ --- 272 unchanged lines hidden (view full) --- 281 * terminated, Memory will be allocated for the command in that case. 282 * 283 * @param cmd List of commands to run, each separated bu semicolon 284 * @param len Length of commands excluding terminator if known (-1 if not) 285 * @param flag Execution flags (CMD_FLAG_...) 286 * @return 0 on success, or != 0 on error. 287 */ 288int run_command_list(const char *cmd, int len, int flag); |
289void init_cmd_timeout(void); 290void reset_cmd_timeout(void); | |
291extern char console_buffer[]; 292 293/* arch/$(ARCH)/lib/board.c */ 294void board_init_f(ulong); 295void board_init_r (gd_t *, ulong) __attribute__ ((noreturn)); 296int checkboard (void); 297int checkflash (void); 298int checkdram (void); --- 775 unchanged lines hidden --- | 289extern char console_buffer[]; 290 291/* arch/$(ARCH)/lib/board.c */ 292void board_init_f(ulong); 293void board_init_r (gd_t *, ulong) __attribute__ ((noreturn)); 294int checkboard (void); 295int checkflash (void); 296int checkdram (void); --- 775 unchanged lines hidden --- |