From: Richard Weinberger Date: Sun, 12 Apr 2015 22:52:36 +0000 (+0200) Subject: nfc: Fix portid type in urelease_work X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=65bc4f936e6f1c7de59938e832701faa903d2d45;p=linux-beck.git nfc: Fix portid type in urelease_work portid is an unsigned integer. Fix urelease_work to match all other portid user in the kernel. Signed-off-by: Richard Weinberger Signed-off-by: David S. Miller --- diff --git a/net/nfc/netlink.c b/net/nfc/netlink.c index 14a2d11581da..3763036710ae 100644 --- a/net/nfc/netlink.c +++ b/net/nfc/netlink.c @@ -1584,7 +1584,7 @@ static const struct genl_ops nfc_genl_ops[] = { struct urelease_work { struct work_struct w; - int portid; + u32 portid; }; static void nfc_urelease_event_work(struct work_struct *work)