From: Cyrill Gorcunov Date: Mon, 16 Jul 2007 06:41:40 +0000 (-0700) Subject: UDF: fix function name from udf_crc16 to udf_crc X-Git-Tag: upstream/snapshot3+hdmi~32703 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d375b97037c40d51b41d3b00b15729f6730c2cfe;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Cc: Jan Kara Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/udf/crc.c b/fs/udf/crc.c index 1b82a4a..ef2bfaa 100644 --- a/fs/udf/crc.c +++ b/fs/udf/crc.c @@ -106,8 +106,8 @@ int main(void) { unsigned short x; - x = udf_crc16(bytes, sizeof bytes); - printf("udf_crc16: calculated = %4.4x, correct = %4.4x\n", x, 0x3299U); + x = udf_crc(bytes, sizeof bytes); + printf("udf_crc: calculated = %4.4x, correct = %4.4x\n", x, 0x3299U); return 0; }