1
0
Fork 0

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 <richard@nod.at>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Richard Weinberger 2015-04-13 00:52:36 +02:00 committed by David S. Miller
parent 0392d099ab
commit 65bc4f936e

View file

@ -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)