diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-08 16:21:22 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-08 16:21:22 -0500 |
commit | 98793265b429a3f0b3f1750e74d67cd4d740d162 (patch) | |
tree | b0bd717673f0c21845cf053f3fb6b75d42530af5 /lib | |
parent | b4a133da2eaccb844a7beaef16ffd9c76a0d21d3 (diff) | |
parent | bd1b2a555952d959f47169056fca05acf7eff81f (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (53 commits)
Kconfig: acpi: Fix typo in comment.
misc latin1 to utf8 conversions
devres: Fix a typo in devm_kfree comment
btrfs: free-space-cache.c: remove extra semicolon.
fat: Spelling s/obsolate/obsolete/g
SCSI, pmcraid: Fix spelling error in a pmcraid_err() call
tools/power turbostat: update fields in manpage
mac80211: drop spelling fix
types.h: fix comment spelling for 'architectures'
typo fixes: aera -> area, exntension -> extension
devices.txt: Fix typo of 'VMware'.
sis900: Fix enum typo 'sis900_rx_bufer_status'
decompress_bunzip2: remove invalid vi modeline
treewide: Fix comment and string typo 'bufer'
hyper-v: Update MAINTAINERS
treewide: Fix typos in various parts of the kernel, and fix some comments.
clockevents: drop unknown Kconfig symbol GENERIC_CLOCKEVENTS_MIGR
gpio: Kconfig: drop unknown symbol 'CS5535_GPIO'
leds: Kconfig: Fix typo 'D2NET_V2'
sound: Kconfig: drop unknown symbol ARCH_CLPS7500
...
Fix up trivial conflicts in arch/powerpc/platforms/40x/Kconfig (some new
kconfig additions, close to removed commented-out old ones)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig | 7 | ||||
-rw-r--r-- | lib/cordic.c | 2 | ||||
-rw-r--r-- | lib/decompress_bunzip2.c | 5 | ||||
-rw-r--r-- | lib/decompress_unlzma.c | 2 |
4 files changed, 7 insertions, 9 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 63b5782732ed..f34be6417d71 100644 --- a/lib/Kconfig +++ b/lib/Kconfig | |||
@@ -273,10 +273,9 @@ config AVERAGE | |||
273 | If unsure, say N. | 273 | If unsure, say N. |
274 | 274 | ||
275 | config CORDIC | 275 | config CORDIC |
276 | tristate "Cordic function" | 276 | tristate "CORDIC algorithm" |
277 | help | 277 | help |
278 | The option provides arithmetic function using cordic algorithm | 278 | This option provides an implementation of the CORDIC algorithm; |
279 | so its calculations are in fixed point. Modules can select this | 279 | calculations are in fixed point. Module will be called cordic. |
280 | when they require this function. Module will be called cordic. | ||
281 | 280 | ||
282 | endmenu | 281 | endmenu |
diff --git a/lib/cordic.c b/lib/cordic.c index aa27a88d7e04..6cf477839ebd 100644 --- a/lib/cordic.c +++ b/lib/cordic.c | |||
@@ -96,6 +96,6 @@ struct cordic_iq cordic_calc_iq(s32 theta) | |||
96 | } | 96 | } |
97 | EXPORT_SYMBOL(cordic_calc_iq); | 97 | EXPORT_SYMBOL(cordic_calc_iq); |
98 | 98 | ||
99 | MODULE_DESCRIPTION("Cordic functions"); | 99 | MODULE_DESCRIPTION("CORDIC algorithm"); |
100 | MODULE_AUTHOR("Broadcom Corporation"); | 100 | MODULE_AUTHOR("Broadcom Corporation"); |
101 | MODULE_LICENSE("Dual BSD/GPL"); | 101 | MODULE_LICENSE("Dual BSD/GPL"); |
diff --git a/lib/decompress_bunzip2.c b/lib/decompress_bunzip2.c index a7b80c1d6a0d..31c5f7675fbf 100644 --- a/lib/decompress_bunzip2.c +++ b/lib/decompress_bunzip2.c | |||
@@ -1,4 +1,3 @@ | |||
1 | /* vi: set sw = 4 ts = 4: */ | ||
2 | /* Small bzip2 deflate implementation, by Rob Landley (rob@landley.net). | 1 | /* Small bzip2 deflate implementation, by Rob Landley (rob@landley.net). |
3 | 2 | ||
4 | Based on bzip2 decompression code by Julian R Seward (jseward@acm.org), | 3 | Based on bzip2 decompression code by Julian R Seward (jseward@acm.org), |
@@ -691,7 +690,7 @@ STATIC int INIT bunzip2(unsigned char *buf, int len, | |||
691 | outbuf = malloc(BZIP2_IOBUF_SIZE); | 690 | outbuf = malloc(BZIP2_IOBUF_SIZE); |
692 | 691 | ||
693 | if (!outbuf) { | 692 | if (!outbuf) { |
694 | error("Could not allocate output bufer"); | 693 | error("Could not allocate output buffer"); |
695 | return RETVAL_OUT_OF_MEMORY; | 694 | return RETVAL_OUT_OF_MEMORY; |
696 | } | 695 | } |
697 | if (buf) | 696 | if (buf) |
@@ -699,7 +698,7 @@ STATIC int INIT bunzip2(unsigned char *buf, int len, | |||
699 | else | 698 | else |
700 | inbuf = malloc(BZIP2_IOBUF_SIZE); | 699 | inbuf = malloc(BZIP2_IOBUF_SIZE); |
701 | if (!inbuf) { | 700 | if (!inbuf) { |
702 | error("Could not allocate input bufer"); | 701 | error("Could not allocate input buffer"); |
703 | i = RETVAL_OUT_OF_MEMORY; | 702 | i = RETVAL_OUT_OF_MEMORY; |
704 | goto exit_0; | 703 | goto exit_0; |
705 | } | 704 | } |
diff --git a/lib/decompress_unlzma.c b/lib/decompress_unlzma.c index 476c65af9709..32adb73a9038 100644 --- a/lib/decompress_unlzma.c +++ b/lib/decompress_unlzma.c | |||
@@ -562,7 +562,7 @@ STATIC inline int INIT unlzma(unsigned char *buf, int in_len, | |||
562 | else | 562 | else |
563 | inbuf = malloc(LZMA_IOBUF_SIZE); | 563 | inbuf = malloc(LZMA_IOBUF_SIZE); |
564 | if (!inbuf) { | 564 | if (!inbuf) { |
565 | error("Could not allocate input bufer"); | 565 | error("Could not allocate input buffer"); |
566 | goto exit_0; | 566 | goto exit_0; |
567 | } | 567 | } |
568 | 568 | ||