Skip to content

Commit

Permalink
Merge branch 'kconfig' of git://git.kernel.org/pub/scm/linux/kernel/g…
Browse files Browse the repository at this point in the history
…it/mmarek/kbuild

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
  • Loading branch information
torvalds committed Feb 19, 2015
2 parents 7734334 + b6a2ab2 commit b11a278
Show file tree
Hide file tree
Showing 33 changed files with 105 additions and 99 deletions.
6 changes: 3 additions & 3 deletions arch/mips/pmcs-msp71xx/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ config PMC_MSP7120_FPGA
endchoice

config MSP_HAS_USB
boolean
bool
depends on PMC_MSP

config MSP_ETH
boolean
bool
select MSP_HAS_MAC
depends on PMC_MSP

config MSP_HAS_MAC
boolean
bool
depends on PMC_MSP
2 changes: 1 addition & 1 deletion drivers/connector/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ menuconfig CONNECTOR
if CONNECTOR

config PROC_EVENTS
boolean "Report process events to userspace"
bool "Report process events to userspace"
depends on CONNECTOR=y
default y
---help---
Expand Down
2 changes: 1 addition & 1 deletion drivers/hwmon/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1606,7 +1606,7 @@ config SENSORS_W83795
will be called w83795.

config SENSORS_W83795_FANCTRL
boolean "Include automatic fan control support (DANGEROUS)"
bool "Include automatic fan control support (DANGEROUS)"
depends on SENSORS_W83795
default n
help
Expand Down
2 changes: 1 addition & 1 deletion drivers/hwmon/pmbus/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ config SENSORS_LTC2978
be called ltc2978.

config SENSORS_LTC2978_REGULATOR
boolean "Regulator support for LTC2978 and compatibles"
bool "Regulator support for LTC2978 and compatibles"
depends on SENSORS_LTC2978 && REGULATOR
help
If you say yes here you get regulator support for Linear
Expand Down
4 changes: 2 additions & 2 deletions drivers/i2c/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ config ACPI_I2C_OPREGION
if I2C

config I2C_BOARDINFO
boolean
bool
default y

config I2C_COMPAT
boolean "Enable compatibility bits for old user-space"
bool "Enable compatibility bits for old user-space"
default y
help
Say Y here if you intend to run lm-sensors 3.1.1 or older, or any
Expand Down
4 changes: 2 additions & 2 deletions drivers/iio/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ config IIO_BUFFER
if IIO_BUFFER

config IIO_BUFFER_CB
boolean "IIO callback buffer used for push in-kernel interfaces"
bool "IIO callback buffer used for push in-kernel interfaces"
help
Should be selected by any drivers that do in-kernel push
usage. That is, those where the data is pushed to the consumer.
Expand All @@ -43,7 +43,7 @@ config IIO_TRIGGERED_BUFFER
endif # IIO_BUFFER

config IIO_TRIGGER
boolean "Enable triggered sampling support"
bool "Enable triggered sampling support"
help
Provides IIO core support for triggers. Currently these
are used to initialize capture of samples to push into
Expand Down
2 changes: 1 addition & 1 deletion drivers/isdn/hardware/mISDN/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ config MISDN_HFCMULTI
* HFC-E1 (E1 interface for 2Mbit ISDN)

config MISDN_HFCMULTI_8xx
boolean "Support for XHFC embedded board in HFC multiport driver"
bool "Support for XHFC embedded board in HFC multiport driver"
depends on MISDN
depends on MISDN_HFCMULTI
depends on 8xx
Expand Down
4 changes: 2 additions & 2 deletions drivers/md/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ config MD_FAULTY
source "drivers/md/bcache/Kconfig"

config BLK_DEV_DM_BUILTIN
boolean
bool

config BLK_DEV_DM
tristate "Device mapper support"
Expand All @@ -197,7 +197,7 @@ config BLK_DEV_DM
If unsure, say N.

config DM_DEBUG
boolean "Device mapper debugging support"
bool "Device mapper debugging support"
depends on BLK_DEV_DM
---help---
Enable this for messages that may help debug device-mapper problems.
Expand Down
2 changes: 1 addition & 1 deletion drivers/md/persistent-data/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ config DM_PERSISTENT_DATA
device-mapper targets such as the thin provisioning target.

config DM_DEBUG_BLOCK_STACK_TRACING
boolean "Keep stack trace of persistent data block lock holders"
bool "Keep stack trace of persistent data block lock holders"
depends on STACKTRACE_SUPPORT && DM_PERSISTENT_DATA
select STACKTRACE
---help---
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/ethernet/ti/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ config TI_DAVINCI_CPDMA
will be called davinci_cpdma. This is recommended.

config TI_CPSW_PHY_SEL
boolean "TI CPSW Switch Phy sel Support"
bool "TI CPSW Switch Phy sel Support"
depends on TI_CPSW
---help---
This driver supports configuring of the phy mode connected to
Expand All @@ -77,7 +77,7 @@ config TI_CPSW
will be called cpsw.

config TI_CPTS
boolean "TI Common Platform Time Sync (CPTS) Support"
bool "TI Common Platform Time Sync (CPTS) Support"
depends on TI_CPSW
select PTP_1588_CLOCK
---help---
Expand Down
12 changes: 6 additions & 6 deletions drivers/net/usb/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -397,22 +397,22 @@ config USB_NET_CDC_SUBSET
not generally have permanently assigned Ethernet addresses.

config USB_ALI_M5632
boolean "ALi M5632 based 'USB 2.0 Data Link' cables"
bool "ALi M5632 based 'USB 2.0 Data Link' cables"
depends on USB_NET_CDC_SUBSET
help
Choose this option if you're using a host-to-host cable
based on this design, which supports USB 2.0 high speed.

config USB_AN2720
boolean "AnchorChips 2720 based cables (Xircom PGUNET, ...)"
bool "AnchorChips 2720 based cables (Xircom PGUNET, ...)"
depends on USB_NET_CDC_SUBSET
help
Choose this option if you're using a host-to-host cable
based on this design. Note that AnchorChips is now a
Cypress brand.

config USB_BELKIN
boolean "eTEK based host-to-host cables (Advance, Belkin, ...)"
bool "eTEK based host-to-host cables (Advance, Belkin, ...)"
depends on USB_NET_CDC_SUBSET
default y
help
Expand All @@ -421,7 +421,7 @@ config USB_BELKIN
microcontroller, with LEDs that indicate traffic.

config USB_ARMLINUX
boolean "Embedded ARM Linux links (iPaq, ...)"
bool "Embedded ARM Linux links (iPaq, ...)"
depends on USB_NET_CDC_SUBSET
default y
help
Expand All @@ -438,14 +438,14 @@ config USB_ARMLINUX
this simpler protocol by installing a different kernel.

config USB_EPSON2888
boolean "Epson 2888 based firmware (DEVELOPMENT)"
bool "Epson 2888 based firmware (DEVELOPMENT)"
depends on USB_NET_CDC_SUBSET
help
Choose this option to support the usb networking links used
by some sample firmware from Epson.

config USB_KC2190
boolean "KT Technology KC2190 based cables (InstaNet)"
bool "KT Technology KC2190 based cables (InstaNet)"
depends on USB_NET_CDC_SUBSET
help
Choose this option if you're using a host-to-host cable
Expand Down
6 changes: 3 additions & 3 deletions drivers/net/wireless/rt2x00/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -243,14 +243,14 @@ config RT2X00_LIB
select AVERAGE

config RT2X00_LIB_FIRMWARE
boolean
bool
select FW_LOADER

config RT2X00_LIB_CRYPTO
boolean
bool

config RT2X00_LIB_LEDS
boolean
bool
default y if (RT2X00_LIB=y && LEDS_CLASS=y) || (RT2X00_LIB=m && LEDS_CLASS!=n)

config RT2X00_LIB_DEBUGFS
Expand Down
2 changes: 1 addition & 1 deletion drivers/pci/pcie/aer/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

config PCIEAER
boolean "Root Port Advanced Error Reporting support"
bool "Root Port Advanced Error Reporting support"
depends on PCIEPORTBUS
select RAS
default y
Expand Down
8 changes: 4 additions & 4 deletions drivers/rtc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ config RTC_DEBUG
comment "RTC interfaces"

config RTC_INTF_SYSFS
boolean "/sys/class/rtc/rtcN (sysfs)"
bool "/sys/class/rtc/rtcN (sysfs)"
depends on SYSFS
default RTC_CLASS
help
Expand All @@ -75,7 +75,7 @@ config RTC_INTF_SYSFS
If unsure, say Y.

config RTC_INTF_PROC
boolean "/proc/driver/rtc (procfs for rtcN)"
bool "/proc/driver/rtc (procfs for rtcN)"
depends on PROC_FS
default RTC_CLASS
help
Expand All @@ -88,7 +88,7 @@ config RTC_INTF_PROC
If unsure, say Y.

config RTC_INTF_DEV
boolean "/dev/rtcN (character devices)"
bool "/dev/rtcN (character devices)"
default RTC_CLASS
help
Say yes here if you want to use your RTCs using the /dev
Expand Down Expand Up @@ -466,7 +466,7 @@ config RTC_DRV_DM355EVM
Supports the RTC firmware in the MSP430 on the DM355 EVM.

config RTC_DRV_TWL92330
boolean "TI TWL92330/Menelaus"
bool "TI TWL92330/Menelaus"
depends on MENELAUS
help
If you say yes here you get support for the RTC on the
Expand Down
6 changes: 3 additions & 3 deletions drivers/spi/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ menuconfig SPI
if SPI

config SPI_DEBUG
boolean "Debug support for SPI drivers"
bool "Debug support for SPI drivers"
depends on DEBUG_KERNEL
help
Say "yes" to enable debug messaging (like dev_dbg and pr_debug),
Expand All @@ -40,8 +40,8 @@ config SPI_DEBUG
#

config SPI_MASTER
# boolean "SPI Master Support"
boolean
# bool "SPI Master Support"
bool
default SPI
help
If your system has an master-capable SPI controller (which
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/board/Kconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
config STAGING_BOARD
boolean "Staging Board Support"
bool "Staging Board Support"
depends on OF_ADDRESS
depends on BROKEN
help
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/emxx_udc/Kconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
config USB_EMXX
boolean "EMXX USB Function Device Controller"
bool "EMXX USB Function Device Controller"
depends on USB_GADGET && (ARCH_SHMOBILE || (ARM && COMPILE_TEST))
help
The Emma Mobile series of SoCs from Renesas Electronics and
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/iio/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ config IIO_SIMPLE_DUMMY
if IIO_SIMPLE_DUMMY

config IIO_SIMPLE_DUMMY_EVENTS
boolean "Event generation support"
bool "Event generation support"
select IIO_DUMMY_EVGEN
help
Add some dummy events to the simple dummy driver.

config IIO_SIMPLE_DUMMY_BUFFER
boolean "Buffered capture support"
bool "Buffered capture support"
select IIO_BUFFER
select IIO_KFIFO_BUF
help
Expand Down
2 changes: 1 addition & 1 deletion drivers/tty/serial/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ config SERIAL_MFD_HSU
select SERIAL_CORE

config SERIAL_MFD_HSU_CONSOLE
boolean "Medfile HSU serial console support"
bool "Medfile HSU serial console support"
depends on SERIAL_MFD_HSU=y
select SERIAL_CORE_CONSOLE

Expand Down
Loading

0 comments on commit b11a278

Please sign in to comment.