Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 65bc4f93 authored by Richard Weinberger's avatar Richard Weinberger Committed by David S. Miller
Browse files

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: default avatarRichard Weinberger <richard@nod.at>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0392d099
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)