From: Jiri Slaby The third parameter of cn_add_callback accepts functions with void *()(struct cn_msg *) prototype. Change cn_ulog_callback to match it by removing void * and adding struct cn_msg * directly. It's introduced by commit: connector: make callback argument type explicit Signed-off-by: Jiri Slaby Cc: Mike Frysinger Cc: David S. Miller Signed-off-by: Andrew Morton Signed-off-by: Alasdair G Kergon --- drivers/md/dm-log-userspace-transfer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Index: linux-2.6.31/drivers/md/dm-log-userspace-transfer.c =================================================================== --- linux-2.6.31.orig/drivers/md/dm-log-userspace-transfer.c +++ linux-2.6.31/drivers/md/dm-log-userspace-transfer.c @@ -129,9 +129,8 @@ static int fill_pkg(struct cn_msg *msg, * This is the connector callback that delivers data * that was sent from userspace. */ -static void cn_ulog_callback(void *data) +static void cn_ulog_callback(struct cn_msg *msg) { - struct cn_msg *msg = (struct cn_msg *)data; struct dm_ulog_request *tfr = (struct dm_ulog_request *)(msg + 1); spin_lock(&receiving_list_lock);