The patch titled Subject: drivers-memstick-core-mspro_block-use-kmemdup-fix has been removed from the -mm tree. Its filename was drivers-memstick-core-mspro_block-use-kmemdup-fix.patch This patch was dropped because it was folded into drivers-memstick-core-mspro_block-use-kmemdup.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: drivers-memstick-core-mspro_block-use-kmemdup-fix remove unneeded cast to void* Cc: Muhammad Falak R Wani <falakreyaz@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/memstick/core/mspro_block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/memstick/core/mspro_block.c~drivers-memstick-core-mspro_block-use-kmemdup-fix drivers/memstick/core/mspro_block.c --- a/drivers/memstick/core/mspro_block.c~drivers-memstick-core-mspro_block-use-kmemdup-fix +++ a/drivers/memstick/core/mspro_block.c @@ -1033,7 +1033,7 @@ static int mspro_block_read_attributes(s } msb->attr_group.name = "media_attributes"; - buffer = kmemdup((char *)attr, attr_len, GFP_KERNEL); + buffer = kmemdup(attr, attr_len, GFP_KERNEL); if (!buffer) { rc = -ENOMEM; goto out_free_attr; _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are drivers-memstick-core-mspro_block-use-kmemdup.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