1. 08 Feb, 2013 2 commits
    • Peter Huewe's avatar
      staging/goldfish: Add MTD dependency to KCONFIG · f6fcf7f7
      Peter Huewe authored
      If CONFIG_MTD is not set goldfish_nand fails to compile with the
      following linker warnings:
      
      drivers/built-in.o: In function `goldfish_nand_remove':
      goldfish_nand.c:(.text+0x6e7d0e): undefined reference to
      `mtd_device_unregister'
      drivers/built-in.o: In function `goldfish_nand_erase':
      goldfish_nand.c:(.text+0x6e8ba2): undefined reference to
      `mtd_erase_callback'
      drivers/built-in.o: In function `goldfish_nand_init_device':
      goldfish_nand.c:(.text+0x6e8eba): undefined reference to
      `mtd_device_parse_register'
      Reported-by: default avatarRandy Dunlap <rdunlap@infradead.org>
      Signed-off-by: default avatarPeter Huewe <peterhuewe@gmx.de>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      f6fcf7f7
    • Peter Huewe's avatar
      staging/goldfish: Use %zx for printing size_t variables · b4fcf48a
      Peter Huewe authored
      When building the driver, gcc emits the following warnings:
      .../drivers/staging/goldfish/goldfish_nand.c:
      In function 'goldfish_nand_read_oob':
      goldfish_nand.c:159:2:
      warning: format '%x' expects argument of type 'unsigned int', but
      argument 3 has type 'size_t' [-Wformat]
      goldfish_nand.c:159:2:
      warning: format '%x' expects argument of type 'unsigned int', but
      argument 4 has type 'size_t' [-Wformat]
      
      In function 'goldfish_nand_write_oob':
      goldfish_nand.c:191:2:
      warning: format '%x' expects argument of type 'unsigned int', but
      argument 3 has type 'size_t' [-Wformat]
      goldfish_nand.c:191:2:
      warning: format '%x' expects argument of type 'unsigned int', but
      argument 4 has type 'size_t' [-Wformat]
      
      In function 'goldfish_nand_read':
      goldfish_nand.c:215:2:
      warning: format '%x' expects argument of type 'unsigned int', but
      argument 3 has type 'size_t' [-Wformat]
      
      In function 'goldfish_nand_write':
      goldfish_nand.c:239:2:
      warning: format '%x' expects argument of type 'unsigned int', but
      argument 3 has type 'size_t' [-Wformat]
      
      -> As defined in the printk-formats use %zx for size_t variables
      Signed-off-by: default avatarPeter Huewe <peterhuewe@gmx.de>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      b4fcf48a
  2. 07 Feb, 2013 2 commits
  3. 06 Feb, 2013 36 commits