diff options
author | Christoph Jaeger <cj@linux.com> | 2014-12-20 15:41:11 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2015-01-07 13:08:04 +0100 |
commit | 6341e62b212a2541efb0160c470e90bd226d5496 (patch) | |
tree | d627887c8ec8f3c65f5cef59ebd85becac7634b2 /drivers/staging | |
parent | 97bf6af1f928216fd6c5a66e8a57bfa95a659672 (diff) | |
download | linux-stable-6341e62b212a2541efb0160c470e90bd226d5496.tar.gz linux-stable-6341e62b212a2541efb0160c470e90bd226d5496.tar.bz2 linux-stable-6341e62b212a2541efb0160c470e90bd226d5496.zip |
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: Christoph Jaeger <cj@linux.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/board/Kconfig | 2 | ||||
-rw-r--r-- | drivers/staging/emxx_udc/Kconfig | 2 | ||||
-rw-r--r-- | drivers/staging/iio/Kconfig | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/board/Kconfig b/drivers/staging/board/Kconfig index 7eda0b8b7aab..0a89ad16371f 100644 --- a/drivers/staging/board/Kconfig +++ b/drivers/staging/board/Kconfig @@ -1,5 +1,5 @@ config STAGING_BOARD - boolean "Staging Board Support" + bool "Staging Board Support" depends on OF_ADDRESS depends on BROKEN help diff --git a/drivers/staging/emxx_udc/Kconfig b/drivers/staging/emxx_udc/Kconfig index 9bc6d3db86d9..cc3402020487 100644 --- a/drivers/staging/emxx_udc/Kconfig +++ b/drivers/staging/emxx_udc/Kconfig @@ -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 diff --git a/drivers/staging/iio/Kconfig b/drivers/staging/iio/Kconfig index fa38be0982f9..24183028bd71 100644 --- a/drivers/staging/iio/Kconfig +++ b/drivers/staging/iio/Kconfig @@ -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 |