1. 11 Dec, 2015 1 commit
  2. 10 Dec, 2015 6 commits
  3. 09 Dec, 2015 8 commits
  4. 08 Dec, 2015 11 commits
  5. 04 Dec, 2015 5 commits
  6. 01 Dec, 2015 7 commits
  7. 30 Nov, 2015 2 commits
    • Arnd Bergmann's avatar
      mtd: cfi: don't warn about broken geometry for !CONFIG_MTD · fe7579d6
      Arnd Bergmann authored
      The linux/mtd/map.h header file is included by a couple of
      platform specific files that are built even when CONFIG_MTD
      is disabled, and we always get
      
       warning "No CONFIG_MTD_MAP_BANK_WIDTH_xx selected. No NOR chip support can work"
      
      in that case. This adds an #ifdef around the pointless warning,
      as everything is really fine when we don't build the drivers
      anyway.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
      fe7579d6
    • Arnd Bergmann's avatar
      mtd: cfi: enforce valid geometry configuration · f5f92b36
      Arnd Bergmann authored
      MTD allows compile-time configuration of the possible CFI geometry
      settings that are allowed by the kernel, but that includes a couple of
      invalid configurations, where no bank width or no interleave setting
      is allowed. These are then caught with a compile-time warning:
      
      include/linux/mtd/cfi.h:76:2: warning: #warning No CONFIG_MTD_CFI_Ix selected. No NOR chip support can work.
      include/linux/mtd/map.h:145:2: warning: #warning "No CONFIG_MTD_MAP_BANK_WIDTH_xx selected. No NOR chip support can work"
      
      This is a bit annoying for randconfig tests, and can be avoided if
      we change the Kconfig logic to always select the simplest configuration
      when no other one is enabled.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
      f5f92b36