1. 10 9月, 2011 9 次提交
    • W
      MAKEALL: drop non-existent "versatile" configuration · 1b347fd6
      Wolfgang Denk 提交于
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
      1b347fd6
    • W
      YAFFS2: fs/yaffs2/yaffs_guts.c - fix build warnings · 068d6f9a
      Wolfgang Denk 提交于
      Fix these:
      yaffs_guts.c: In function 'yaffs_ReadDataFromFile':
      yaffs_guts.c:4622: warning: pointer targets in passing argument 3 of 'yaffs_AddrToChunk' differ in signedness
      yaffs_guts.c:4622: warning: pointer targets in passing argument 4 of 'yaffs_AddrToChunk' differ in signedness
      yaffs_guts.c: In function 'yaffs_WriteDataToFile':
      yaffs_guts.c:4745: warning: pointer targets in passing argument 3 of 'yaffs_AddrToChunk' differ in signedness
      yaffs_guts.c:4745: warning: pointer targets in passing argument 4 of 'yaffs_AddrToChunk' differ in signedness
      yaffs_guts.c: In function 'yaffs_ResizeFile':
      yaffs_guts.c:4968: warning: pointer targets in passing argument 3 of 'yaffs_AddrToChunk' differ in signedness
      yaffs_guts.c:4968: warning: pointer targets in passing argument 4 of 'yaffs_AddrToChunk' differ in signedness
      yaffs_guts.c: In function 'yaffs_GutsInitialise':
      yaffs_guts.c:7235: warning: assignment from incompatible pointer type
      yaffs_guts.c: In function 'yaffs_CreateNewObject':
      yaffs_guts.c:2143: warning: 'tn' may be used uninitialized in this function
      yaffs_guts.c: In function 'yaffs_MknodObject':
      yaffs_guts.c:2258: warning: 'str' may be used uninitialized in this function
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      068d6f9a
    • W
      YAFFS2: fs/yaffs2/yaffs_guts.c - fix build warnings · 3da04743
      Wolfgang Denk 提交于
      Fix these:
      yaffs_guts.c: At top level:
      yaffs_guts.c:400: warning: 'yaffs_SkipFullVerification' defined but not used
      
      Testing shows no changes of the image sizes.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      3da04743
    • W
      YAFFS2: fs/yaffs2/yaffs_nand.[hc] - fix build warnings · fa00e032
      Wolfgang Denk 提交于
      Fix these:
      yaffs_guts.c: In function 'yaffs_Scan':
      yaffs_guts.c:5436: warning: pointer targets in passing argument 4 of 'yaffs_QueryInitialBlockState' differ in signedness
      yaffs_guts.c: In function 'yaffs_ScanBackwards':
      yaffs_guts.c:6017: warning: pointer targets in passing argument 4 of 'yaffs_QueryInitialBlockState' differ in signedness
      yaffs_nand.c: In function 'yaffs_QueryInitialBlockState':
      yaffs_nand.c:109: warning: pointer targets in passing argument 4 of 'dev->queryNANDBlock' differ in signedness
      yaffs_nand.c:113: warning: pointer targets in passing argument 4 of 'yaffs_TagsCompatabilityQueryNANDBlock' differ in signedness
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      fa00e032
    • W
      YAFFS2: fs/yaffs2/Makefile - fix build warnings · 9d0265e9
      Wolfgang Denk 提交于
      Drop the "-DNO_Y_INLINE" setting to fix these:
      yaffs_guts.h:806: warning: 'yaffs_GetBlockInfo' defined but not used
      
      Impact on image size is negligible - for the VCMA9 board the text
      segment size grew from 496353 to 496357 bytes (i. e. 0.0008%);
      total image size even remained constant.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      9d0265e9
    • W
      YAFFS2: fs/yaffs2/yaffscfg.c - fix build warnings · 6ac360c4
      Wolfgang Denk 提交于
      Fix these:
      yaffscfg.c: In function 'cmd_yaffs_mread_file':
      yaffscfg.c:316: warning: format '%08x' expects type 'unsigned int', but argument 3 has type 'char *'
      yaffscfg.c: In function 'cmd_yaffs_ls': yaffscfg.c:371: warning: format '%7d' expects type 'int', but argument 3 has type 'off_t'
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      6ac360c4
    • W
      YAFFS2: cmd_yaffs2.c - fix build warnings · d1f7a899
      Wolfgang Denk 提交于
      Fix these:
      cmd_yaffs2.c: In function 'do_ywr':
      cmd_yaffs2.c:69: warning: format '%x' expects type 'unsigned int', but argument 2 has type 'ulong'
      cmd_yaffs2.c:69: warning: format '%x' expects type 'unsigned int', but argument 3 has type 'ulong'
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      d1f7a899
    • H
      net/eth.c: throw BUG for eth_get_dev_by_name(NULL) · 7e7f903f
      Helmut Raiger 提交于
      eth_get_dev_by_name() is not safe to use for devname being NULL
      as it uses strcmp. This patch makes it fail with a BUG().
      Signed-off-by: NHelmut Raiger <helmut.raiger@hale.at>
      Acked-by: NMike Frysinger <vapier@gentoo.org>
      7e7f903f
    • W
      smc911x: Fix build warnings · 24e16644
      Wolfgang Denk 提交于
      Commit 6af1d41a "smc911x MII made available" was missing a few "const"
      qualifiers.  Fix the resulting in build warnings:
      
      smc911x.c: In function 'smc911x_initialize':
      smc911x.c:297: warning: passing argument 2 of 'miiphy_register' from incompatible pointer type
      smc911x.c:297: warning: passing argument 3 of 'miiphy_register' from incompatible pointer type
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Helmut Raiger <helmut.raiger@hale.at>
      24e16644
  2. 08 9月, 2011 24 次提交
  3. 06 9月, 2011 1 次提交
  4. 05 9月, 2011 6 次提交