diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2007-07-16 02:41:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-16 12:05:51 -0400 |
commit | d375b97037c40d51b41d3b00b15729f6730c2cfe (patch) | |
tree | e416b94adc3c72cb2767d5f31d6d339f4716dcef /fs/udf | |
parent | 608e2619682e951f525b08e7a48669a3c0263b41 (diff) |
UDF: fix function name from udf_crc16 to udf_crc
We have to change udf_crc16() name to udf_crc() to be able to play with CRC
test.
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Cc: Jan Kara <jack@ucw.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/udf')
-rw-r--r-- | fs/udf/crc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/udf/crc.c b/fs/udf/crc.c index 1b82a4adc2f7..ef2bfaa19d75 100644 --- a/fs/udf/crc.c +++ b/fs/udf/crc.c | |||
@@ -106,8 +106,8 @@ int main(void) | |||
106 | { | 106 | { |
107 | unsigned short x; | 107 | unsigned short x; |
108 | 108 | ||
109 | x = udf_crc16(bytes, sizeof bytes); | 109 | x = udf_crc(bytes, sizeof bytes); |
110 | printf("udf_crc16: calculated = %4.4x, correct = %4.4x\n", x, 0x3299U); | 110 | printf("udf_crc: calculated = %4.4x, correct = %4.4x\n", x, 0x3299U); |
111 | 111 | ||
112 | return 0; | 112 | return 0; |
113 | } | 113 | } |