diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 54cf309a92a5..75da4d3e2afd 100644 --- a/lib/Kconfig +++ b/lib/Kconfig | |||
@@ -14,7 +14,7 @@ config BITREVERSE | |||
14 | tristate | 14 | tristate |
15 | 15 | ||
16 | config RATIONAL | 16 | config RATIONAL |
17 | boolean | 17 | bool |
18 | 18 | ||
19 | config GENERIC_STRNCPY_FROM_USER | 19 | config GENERIC_STRNCPY_FROM_USER |
20 | bool | 20 | bool |
@@ -39,14 +39,14 @@ config GENERIC_IOMAP | |||
39 | select GENERIC_PCI_IOMAP | 39 | select GENERIC_PCI_IOMAP |
40 | 40 | ||
41 | config GENERIC_IO | 41 | config GENERIC_IO |
42 | boolean | 42 | bool |
43 | default n | 43 | default n |
44 | 44 | ||
45 | config STMP_DEVICE | 45 | config STMP_DEVICE |
46 | bool | 46 | bool |
47 | 47 | ||
48 | config PERCPU_RWSEM | 48 | config PERCPU_RWSEM |
49 | boolean | 49 | bool |
50 | 50 | ||
51 | config ARCH_USE_CMPXCHG_LOCKREF | 51 | config ARCH_USE_CMPXCHG_LOCKREF |
52 | bool | 52 | bool |
@@ -257,7 +257,7 @@ config DECOMPRESS_LZ4 | |||
257 | # Generic allocator support is selected if needed | 257 | # Generic allocator support is selected if needed |
258 | # | 258 | # |
259 | config GENERIC_ALLOCATOR | 259 | config GENERIC_ALLOCATOR |
260 | boolean | 260 | bool |
261 | 261 | ||
262 | # | 262 | # |
263 | # reed solomon support is select'ed if needed | 263 | # reed solomon support is select'ed if needed |
@@ -266,16 +266,16 @@ config REED_SOLOMON | |||
266 | tristate | 266 | tristate |
267 | 267 | ||
268 | config REED_SOLOMON_ENC8 | 268 | config REED_SOLOMON_ENC8 |
269 | boolean | 269 | bool |
270 | 270 | ||
271 | config REED_SOLOMON_DEC8 | 271 | config REED_SOLOMON_DEC8 |
272 | boolean | 272 | bool |
273 | 273 | ||
274 | config REED_SOLOMON_ENC16 | 274 | config REED_SOLOMON_ENC16 |
275 | boolean | 275 | bool |
276 | 276 | ||
277 | config REED_SOLOMON_DEC16 | 277 | config REED_SOLOMON_DEC16 |
278 | boolean | 278 | bool |
279 | 279 | ||
280 | # | 280 | # |
281 | # BCH support is selected if needed | 281 | # BCH support is selected if needed |
@@ -284,7 +284,7 @@ config BCH | |||
284 | tristate | 284 | tristate |
285 | 285 | ||
286 | config BCH_CONST_PARAMS | 286 | config BCH_CONST_PARAMS |
287 | boolean | 287 | bool |
288 | help | 288 | help |
289 | Drivers may select this option to force specific constant | 289 | Drivers may select this option to force specific constant |
290 | values for parameters 'm' (Galois field order) and 't' | 290 | values for parameters 'm' (Galois field order) and 't' |
@@ -320,7 +320,7 @@ config BCH_CONST_T | |||
320 | # Textsearch support is select'ed if needed | 320 | # Textsearch support is select'ed if needed |
321 | # | 321 | # |
322 | config TEXTSEARCH | 322 | config TEXTSEARCH |
323 | boolean | 323 | bool |
324 | 324 | ||
325 | config TEXTSEARCH_KMP | 325 | config TEXTSEARCH_KMP |
326 | tristate | 326 | tristate |
@@ -332,10 +332,10 @@ config TEXTSEARCH_FSM | |||
332 | tristate | 332 | tristate |
333 | 333 | ||
334 | config BTREE | 334 | config BTREE |
335 | boolean | 335 | bool |
336 | 336 | ||
337 | config INTERVAL_TREE | 337 | config INTERVAL_TREE |
338 | boolean | 338 | bool |
339 | help | 339 | help |
340 | Simple, embeddable, interval-tree. Can find the start of an | 340 | Simple, embeddable, interval-tree. Can find the start of an |
341 | overlapping range in log(n) time and then iterate over all | 341 | overlapping range in log(n) time and then iterate over all |
@@ -363,18 +363,18 @@ config ASSOCIATIVE_ARRAY | |||
363 | for more information. | 363 | for more information. |
364 | 364 | ||
365 | config HAS_IOMEM | 365 | config HAS_IOMEM |
366 | boolean | 366 | bool |
367 | depends on !NO_IOMEM | 367 | depends on !NO_IOMEM |
368 | select GENERIC_IO | 368 | select GENERIC_IO |
369 | default y | 369 | default y |
370 | 370 | ||
371 | config HAS_IOPORT_MAP | 371 | config HAS_IOPORT_MAP |
372 | boolean | 372 | bool |
373 | depends on HAS_IOMEM && !NO_IOPORT_MAP | 373 | depends on HAS_IOMEM && !NO_IOPORT_MAP |
374 | default y | 374 | default y |
375 | 375 | ||
376 | config HAS_DMA | 376 | config HAS_DMA |
377 | boolean | 377 | bool |
378 | depends on !NO_DMA | 378 | depends on !NO_DMA |
379 | default y | 379 | default y |
380 | 380 | ||