The patch titled UDF: fix function name from udf_crc16 to udf_crc has been removed from the -mm tree. Its filename was udf-fix-function-name-from-udf_crc16-to-udf_crc.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: UDF: fix function name from udf_crc16 to udf_crc From: Cyrill Gorcunov <gorcunov@xxxxxxxxx> We have to change udf_crc16() name to udf_crc() to be able to play with CRC test. Signed-off-by: Cyrill Gorcunov <gorcunov@xxxxxxxxx> Cc: Jan Kara <jack@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/udf/crc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN fs/udf/crc.c~udf-fix-function-name-from-udf_crc16-to-udf_crc fs/udf/crc.c --- a/fs/udf/crc.c~udf-fix-function-name-from-udf_crc16-to-udf_crc +++ a/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; } _ Patches currently in -mm which might be from gorcunov@xxxxxxxxx are origin.patch sky-cpu-and-nexus-code-style-improvement.patch sky-cpu-and-nexus-include-ioh.patch sky-cpu-and-nexus-check-for-platform_get_resource-ret.patch sky-cpu-and-nexus-check-for-create_proc_entry-ret-code.patch sky-cpu-use-c99-style-for-struct-init.patch sky-cpu-and-nexus-get-rid-of-useless-null-init.patch sky-cpu-and-nexus-use-seq_file-single_open-on-proc-interface.patch udf-coding-style-conversion-lindent.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html