Commit 32d91b4a authored by Geliang Tang's avatar Geliang Tang Committed by Jakub Kicinski
Browse files

nfc: netlink: use &w->w in nfc_genl_rcv_nl_event



Use the struct member w of the struct urelease_work directly instead of
casting it.

Signed-off-by: default avatarGeliang Tang <geliangtang@gmail.com>
Link: https://lore.kernel.org/r/f0ed86d6d54ac0834bd2e161d172bf7bb5647cf7.1610683862.git.geliangtang@gmail.com


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 58f9f9b5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1819,9 +1819,9 @@ static int nfc_genl_rcv_nl_event(struct notifier_block *this,

	w = kmalloc(sizeof(*w), GFP_ATOMIC);
	if (w) {
		INIT_WORK((struct work_struct *) w, nfc_urelease_event_work);
		INIT_WORK(&w->w, nfc_urelease_event_work);
		w->portid = n->portid;
		schedule_work((struct work_struct *) w);
		schedule_work(&w->w);
	}

out: