mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
environment: cleanup prototype declarations of env functions.
Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
cf39b07948
commit
a8409f4f1a
6 changed files with 11 additions and 25 deletions
|
@ -30,6 +30,7 @@
|
|||
#include <command.h>
|
||||
#include <common.h>
|
||||
#include <malloc.h>
|
||||
#include <environment.h>
|
||||
#include <linux/types.h>
|
||||
#include <api_public.h>
|
||||
|
||||
|
@ -40,8 +41,6 @@
|
|||
|
||||
/* U-Boot routines needed */
|
||||
extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
|
||||
extern uchar (*env_get_char)(int);
|
||||
extern uchar *env_get_addr(int);
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
|
|
|
@ -68,19 +68,6 @@ DECLARE_GLOBAL_DATA_PTR;
|
|||
/************************************************************************
|
||||
************************************************************************/
|
||||
|
||||
/* Function that returns a character from the environment */
|
||||
extern uchar (*env_get_char)(int);
|
||||
|
||||
/* Function that returns a pointer to a value from the environment */
|
||||
/* (Only memory version supported / needed). */
|
||||
extern uchar *env_get_addr(int);
|
||||
|
||||
/* Function that updates CRC of the enironment */
|
||||
extern void env_crc_update (void);
|
||||
|
||||
/************************************************************************
|
||||
************************************************************************/
|
||||
|
||||
/*
|
||||
* Table with supported baudrates (defined in config_xyz.h)
|
||||
*/
|
||||
|
|
|
@ -38,10 +38,6 @@ env_t *env_ptr = NULL;
|
|||
|
||||
char * env_name_spec = "EEPROM";
|
||||
|
||||
extern uchar (*env_get_char)(int);
|
||||
extern uchar env_get_char_memory (int index);
|
||||
|
||||
|
||||
uchar env_get_char_spec (int index)
|
||||
{
|
||||
uchar c;
|
||||
|
|
|
@ -63,9 +63,6 @@ char * env_name_spec = "NVRAM";
|
|||
extern uchar default_environment[];
|
||||
extern int default_environment_size;
|
||||
|
||||
extern uchar (*env_get_char)(int);
|
||||
extern uchar env_get_char_memory (int index);
|
||||
|
||||
#ifdef CONFIG_AMIGAONEG3SE
|
||||
uchar env_get_char_spec (int index)
|
||||
{
|
||||
|
|
|
@ -396,9 +396,6 @@ void *ft_get_prop(void *bphp, const char *propname, int *szp)
|
|||
|
||||
/********************************************************************/
|
||||
|
||||
/* Function that returns a character from the environment */
|
||||
extern uchar(*env_get_char) (int);
|
||||
|
||||
void ft_setup(void *blob, bd_t * bd, ulong initrd_start, ulong initrd_end)
|
||||
{
|
||||
u32 *p;
|
||||
|
|
|
@ -107,4 +107,14 @@ typedef struct environment_s {
|
|||
unsigned char data[ENV_SIZE]; /* Environment data */
|
||||
} env_t;
|
||||
|
||||
/* Function that returns a character from the environment */
|
||||
unsigned char (*env_get_char)(int);
|
||||
|
||||
/* Function that returns a pointer to a value from the environment */
|
||||
unsigned char *env_get_addr(int);
|
||||
unsigned char env_get_char_memory (int index);
|
||||
|
||||
/* Function that updates CRC of the enironment */
|
||||
void env_crc_update (void);
|
||||
|
||||
#endif /* _ENVIRONMENT_H_ */
|
||||
|
|
Loading…
Reference in a new issue