diff options
author | Jan Nikitenko <jan.nikitenko@gmail.com> | 2007-07-17 07:04:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:23:04 -0400 |
commit | ad241528c4919505afccb022acbab3eeb0db4d80 (patch) | |
tree | ec3a2a65707ca032eab973f98aa568ed007389f1 /lib/Kconfig | |
parent | c06e677aed0c86480b01faa894967daa8aa3568a (diff) |
CRC7 support
Add CRC7 routines, used for example in MMC over SPI communication.
Kerneldoc updates
[akpm@linux-foundation.org: fix funny mix of const and non-const]
Signed-off-by: Jan Nikitenko <jan.nikitenko@gmail.com>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Cc: "Randy.Dunlap" <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 3eb29d5dc4f5..e5c2c514174a 100644 --- a/lib/Kconfig +++ b/lib/Kconfig | |||
@@ -41,6 +41,14 @@ config CRC32 | |||
41 | kernel tree does. Such modules that use library CRC32 functions | 41 | kernel tree does. Such modules that use library CRC32 functions |
42 | require M here. | 42 | require M here. |
43 | 43 | ||
44 | config CRC7 | ||
45 | tristate "CRC7 functions" | ||
46 | help | ||
47 | This option is provided for the case where no in-kernel-tree | ||
48 | modules require CRC7 functions, but a module built outside | ||
49 | the kernel tree does. Such modules that use library CRC7 | ||
50 | functions require M here. | ||
51 | |||
44 | config LIBCRC32C | 52 | config LIBCRC32C |
45 | tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check" | 53 | tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check" |
46 | help | 54 | help |