~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to lib/Kconfig

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
config GENERIC_FIND_FIRST_BIT
20
20
        bool
21
21
 
22
 
config GENERIC_FIND_NEXT_BIT
23
 
        bool
24
 
 
25
 
config GENERIC_FIND_LAST_BIT
26
 
        bool
27
 
        default y
28
 
 
29
22
config CRC_CCITT
30
23
        tristate "CRC-CCITT functions"
31
24
        help
155
148
        boolean
156
149
 
157
150
#
 
151
# BCH support is selected if needed
 
152
#
 
153
config BCH
 
154
        tristate
 
155
 
 
156
config BCH_CONST_PARAMS
 
157
        boolean
 
158
        help
 
159
          Drivers may select this option to force specific constant
 
160
          values for parameters 'm' (Galois field order) and 't'
 
161
          (error correction capability). Those specific values must
 
162
          be set by declaring default values for symbols BCH_CONST_M
 
163
          and BCH_CONST_T.
 
164
          Doing so will enable extra compiler optimizations,
 
165
          improving encoding and decoding performance up to 2x for
 
166
          usual (m,t) values (typically such that m*t < 200).
 
167
          When this option is selected, the BCH library supports
 
168
          only a single (m,t) configuration. This is mainly useful
 
169
          for NAND flash board drivers requiring known, fixed BCH
 
170
          parameters.
 
171
 
 
172
config BCH_CONST_M
 
173
        int
 
174
        range 5 15
 
175
        help
 
176
          Constant value for Galois field order 'm'. If 'k' is the
 
177
          number of data bits to protect, 'm' should be chosen such
 
178
          that (k + m*t) <= 2**m - 1.
 
179
          Drivers should declare a default value for this symbol if
 
180
          they select option BCH_CONST_PARAMS.
 
181
 
 
182
config BCH_CONST_T
 
183
        int
 
184
        help
 
185
          Constant value for error correction capability in bits 't'.
 
186
          Drivers should declare a default value for this symbol if
 
187
          they select option BCH_CONST_PARAMS.
 
188
 
 
189
#
158
190
# Textsearch support is select'ed if needed
159
191
#
160
192
config TEXTSEARCH
201
233
       bool "Disable obsolete cpumask functions" if DEBUG_PER_CPU_MAPS
202
234
       depends on EXPERIMENTAL && BROKEN
203
235
 
 
236
config CPU_RMAP
 
237
        bool
 
238
        depends on SMP
 
239
 
204
240
#
205
241
# Netlink attribute parsing support is select'ed if needed
206
242
#
217
253
        tristate
218
254
 
219
255
config AVERAGE
220
 
        bool
 
256
        bool "Averaging functions"
 
257
        help
 
258
          This option is provided for the case where no in-kernel-tree
 
259
          modules require averaging functions, but a module built outside
 
260
          the kernel tree does. Such modules that use library averaging
 
261
          functions require Y here.
 
262
 
 
263
          If unsure, say N.
221
264
 
222
265
endmenu