diff options
| author | Peter Tyser <ptyser@xes-inc.com> | 2010-04-12 22:28:05 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-04-13 09:13:04 +0200 | 
| commit | 78acc472d9719316f22e002a009a998d9ceec29d (patch) | |
| tree | aa99461b3d693cf3691869abea485091860a66d0 /include/common.h | |
| parent | ea0364f1bbfed1e3ea711147420875cf338fe77a (diff) | |
| download | olio-uboot-2014.01-78acc472d9719316f22e002a009a998d9ceec29d.tar.xz olio-uboot-2014.01-78acc472d9719316f22e002a009a998d9ceec29d.zip | |
Rename lib_generic/ to lib/
Now that the other architecture-specific lib directories have been
moved out of the top-level directory there's not much reason to have the
'_generic' suffix on the common lib directory.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/include/common.h b/include/common.h index 7aa910dc9..df956bbb4 100644 --- a/include/common.h +++ b/include/common.h @@ -620,22 +620,22 @@ ulong	usec2ticks    (unsigned long usec);  ulong	ticks2usec    (unsigned long ticks);  int	init_timebase (void); -/* lib_generic/gunzip.c */ +/* lib/gunzip.c */  int gunzip(void *, int, unsigned char *, unsigned long *);  int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp,  						int stoponerr, int offset); -/* lib_generic/net_utils.c */ +/* lib/net_utils.c */  #include <net.h>  static inline IPaddr_t getenv_IPaddr (char *var)  {  	return (string_to_ip(getenv(var)));  } -/* lib_generic/time.c */ +/* lib/time.c */  void	udelay        (unsigned long); -/* lib_generic/vsprintf.c */ +/* lib/vsprintf.c */  ulong	simple_strtoul(const char *cp,char **endp,unsigned int base);  unsigned long long	simple_strtoull(const char *cp,char **endp,unsigned int base);  long	simple_strtol(const char *cp,char **endp,unsigned int base); @@ -645,10 +645,10 @@ int	sprintf(char * buf, const char *fmt, ...)  		__attribute__ ((format (__printf__, 2, 3)));  int	vsprintf(char *buf, const char *fmt, va_list args); -/* lib_generic/strmhz.c */ +/* lib/strmhz.c */  char *	strmhz(char *buf, long hz); -/* lib_generic/crc32.c */ +/* lib/crc32.c */  #include <u-boot/crc.h>  /* common/console.c */ |