Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6341e62b authored by Christoph Jaeger's avatar Christoph Jaeger Committed by Michal Marek
Browse files

kconfig: use bool instead of boolean for type definition attributes

Support for keyword 'boolean' will be dropped later on.

No functional change.

Reference: http://lkml.kernel.org/r/cover.1418003065.git.cj@linux.com


Signed-off-by: default avatarChristoph Jaeger <cj@linux.com>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 97bf6af1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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---
+1 −1
Original line number Diff line number Diff line
@@ -1595,7 +1595,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
+1 −1
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -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
Loading