diff options
| author | Wolfgang Denk <wd@denx.de> | 2011-12-23 20:53:58 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-12-23 20:53:58 +0100 | 
| commit | bfcc40bb09b05c90cc3b1496abb270eb8aa72134 (patch) | |
| tree | c551fbe329411533b80f0298f6f0ff5afb48cee7 /include/common.h | |
| parent | cba9a894fdb1cb49b60fcd1d1d6919cbd7995dd5 (diff) | |
| parent | 1895420b2ef7358014b355aa4f4f2c348267a6d9 (diff) | |
| download | olio-uboot-2014.01-bfcc40bb09b05c90cc3b1496abb270eb8aa72134.tar.xz olio-uboot-2014.01-bfcc40bb09b05c90cc3b1496abb270eb8aa72134.zip | |
Merge branch 'next' of ../next
* 'next' of ../next:
  mkenvimage: Add version info switch (-V)
  mkenvimage: Fix getopt() error handling
  mkenvimage: Fix some typos
  phy: add Micrel KS8721BL phy definition
  net: introduce per device index
  mvgbe: remove setting of ethaddr within the driver
  x86: Add support for specifying an initrd with the zboot command
  x86: Refactor the zboot innards so they can be reused with a vboot image
  x86: Add infrastructure to extract an e820 table from the coreboot tables
  x86: Add support for booting Linux using the 32 bit boot protocol
  x86: Clean up the x86 zimage code in preparation to extend it
  x86: Import code from coreboot's libpayload to parse the coreboot table
  x86: Initial commit for running as a coreboot payload
  CHECKPATCH: ./board/esd/hh405/logo_320_240_8bpp.c
  CHECKPATCH: ./board/esd/hh405/logo_1024_768_8bpp.c
  CHECKPATCH: ./board/esd/hh405/logo_320_240_4bpp.c
  CHECKPATCH: ./board/esd/hh405/logo_640_480_24bpp.c
  CHECKPATCH: ./board/esd/apc405/logo_640_480_24bpp.c
  CHECKPATCH: ./board/esd/voh405/logo_320_240_4bpp.c
  CHECKPATCH: ./board/esd/voh405/logo_640_480_24bpp.c
  CHECKPATCH: ./board/esd/hh405/fpgadata.c
  CHECKPATCH: ./board/esd/pci405/fpgadata.c
  CHECKPATCH: ./board/esd/tasreg/fpgadata.c
  CHECKPATCH: ./board/esd/apc405/fpgadata.c
  CHECKPATCH: ./board/esd/voh405/fpgadata.c
  CHECKPATCH: ./board/esd/ash405/fpgadata.c
  CHECKPATCH: ./board/esd/dasa_sim/fpgadata.c
  CHECKPATCH: ./board/esd/ar405/fpgadata_xl30.c
  CHECKPATCH: ./board/esd/ar405/fpgadata.c
  CHECKPATCH: ./board/esd/plu405/fpgadata.c
  CHECKPATCH: ./board/esd/wuh405/fpgadata.c
  CHECKPATCH: ./board/esd/cpci405/fpgadata_cpci405.c
  CHECKPATCH: ./board/esd/cpci405/fpgadata_cpci405ab.c
  CHECKPATCH: ./board/esd/cpci405/fpgadata_cpci4052.c
  CHECKPATCH: ./board/esd/canbt/fpgadata.c
  CHECKPATCH: ./board/esd/du405/fpgadata.c
  CHECKPATCH: ./board/esd/cpciiser4/fpgadata.c
  CHECKPATCH: ./board/dave/PPChameleonEVB/fpgadata.c
  avr32:mmu.c: fix printf() length modifier
  fat.c: fix printf() length modifier
  cmd_sf.c: fix printf() length modifier
  Make printf and vprintf safe from buffer overruns
  vsprintf: Move function documentation into header file
  Add safe vsnprintf and snprintf library functions
  Move vsprintf functions into their own header
Conflicts:
	tools/mkenvimage.c
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 11 | 
1 files changed, 1 insertions, 10 deletions
| diff --git a/include/common.h b/include/common.h index 5cfdd762d..3df1defab 100644 --- a/include/common.h +++ b/include/common.h @@ -733,16 +733,7 @@ void uuid_str_to_bin(const char *uuid, unsigned char *out);  int uuid_str_valid(const char *uuid);  /* lib/vsprintf.c */ -ulong	simple_strtoul(const char *cp,char **endp,unsigned int base); -int strict_strtoul(const char *cp, unsigned int base, unsigned long *res); -unsigned long long	simple_strtoull(const char *cp,char **endp,unsigned int base); -long	simple_strtol(const char *cp,char **endp,unsigned int base); -void	panic(const char *fmt, ...) -		__attribute__ ((format (__printf__, 1, 2), noreturn)); -int	sprintf(char * buf, const char *fmt, ...) -		__attribute__ ((format (__printf__, 2, 3))); -int	vsprintf(char *buf, const char *fmt, va_list args); -char *simple_itoa(ulong i); +#include <vsprintf.h>  /* lib/strmhz.c */  char *	strmhz(char *buf, unsigned long hz); |