]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Merge branch 'kconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
authorLinus Torvalds <torvalds@linux-foundation.org>
Thu, 19 Feb 2015 18:36:45 +0000 (10:36 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 19 Feb 2015 18:36:45 +0000 (10:36 -0800)
Pull kconfig updates from Michal Marek:
 "Yann E Morin was supposed to take over kconfig maintainership, but
  this hasn't happened.  So I'm sending a few kconfig patches that I
  collected:

   - Fix for missing va_end in kconfig
   - merge_config.sh displays used if given too few arguments
   - s/boolean/bool/ in Kconfig files for consistency, with the plan to
     only support bool in the future"

* 'kconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
  kconfig: use va_end to match corresponding va_start
  merge_config.sh: Display usage if given too few arguments
  kconfig: use bool instead of boolean for type definition attributes

13 files changed:
1  2 
drivers/hwmon/Kconfig
drivers/iio/Kconfig
drivers/md/Kconfig
drivers/net/ethernet/ti/Kconfig
drivers/rtc/Kconfig
drivers/spi/Kconfig
drivers/tty/serial/Kconfig
drivers/usb/gadget/Kconfig
drivers/usb/gadget/udc/Kconfig
init/Kconfig
lib/Kconfig
mm/Kconfig
net/sched/Kconfig

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc init/Kconfig
Simple merge
diff --cc lib/Kconfig
index cb9758e0ba0cd42d43cb8e7d6f86810006b80265,75da4d3e2afd4be1fa6b2e4e6da09e5c0c60cd6a..87da53bb1fefd6fc00c9adf31f99716852771036
@@@ -13,17 -13,8 +13,17 @@@ config RAID6_P
  config BITREVERSE
        tristate
  
 +config HAVE_ARCH_BITREVERSE
 +      bool
 +      default n
 +      depends on BITREVERSE
 +      help
 +        This option provides an config for the architecture which have instruction
 +        can do bitreverse operation, we use the hardware instruction if the architecture
 +        have this capability.
 +
  config RATIONAL
-       boolean
+       bool
  
  config GENERIC_STRNCPY_FROM_USER
        bool
diff --cc mm/Kconfig
Simple merge
Simple merge