summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCruz Julian Bishop2013-09-03 14:05:05 +0200
committerGreg Kroah-Hartman2013-09-17 16:47:40 +0200
commitfb51b500a9adafb85a1c0b0544b547f30c9167e1 (patch)
tree670b16b6e5b039c8599aee923bb6f9de62b821ee
parentStaging: android: Remove extern from function prototypes in .h files (diff)
downloadkernel-qcow2-linux-fb51b500a9adafb85a1c0b0544b547f30c9167e1.tar.gz
kernel-qcow2-linux-fb51b500a9adafb85a1c0b0544b547f30c9167e1.tar.xz
kernel-qcow2-linux-fb51b500a9adafb85a1c0b0544b547f30c9167e1.zip
staging/android: Persistent formatting of help Kconfig entries
Three entries were recently added with help listed as "help", while all previous entries were listed as "---help---" to make it more noticeable. This commit fixes that. Sorry that it is so trivial, but it's been bugging me for a while. Signed-off-by: Cruz Julian Bishop <cruzjbishop@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/android/Kconfig6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/android/Kconfig b/drivers/staging/android/Kconfig
index 85fc94b2e0f7..1e9ab6dfc90d 100644
--- a/drivers/staging/android/Kconfig
+++ b/drivers/staging/android/Kconfig
@@ -77,7 +77,7 @@ config SYNC
bool "Synchronization framework"
default n
select ANON_INODES
- help
+ ---help---
This option enables the framework for synchronization between multiple
drivers. Sync implementations can take advantage of hardware
synchronization built into devices like GPUs.
@@ -86,7 +86,7 @@ config SW_SYNC
bool "Software synchronization objects"
default n
depends on SYNC
- help
+ ---help---
A sync object driver that uses a 32bit counter to coordinate
syncrhronization. Useful when there is no hardware primitive backing
the synchronization.
@@ -95,7 +95,7 @@ config SW_SYNC_USER
bool "Userspace API for SW_SYNC"
default n
depends on SW_SYNC
- help
+ ---help---
Provides a user space API to the sw sync object.
*WARNING* improper use of this can result in deadlocking kernel
drivers from userspace.