Commit 0f909361 authored by Dan Carpenter's avatar Dan Carpenter Committed by John W. Linville

NFC: Remove unneeded pn533 dev NULL check

container_of() works by subtracting the offset of the member.  The math
can't really return a zero here.  Sometimes people check it when they
actually meant to check something else but in this case we can just
remove the check.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent a202abb1
...@@ -394,9 +394,6 @@ static void pn533_wq_cmd_complete(struct work_struct *work) ...@@ -394,9 +394,6 @@ static void pn533_wq_cmd_complete(struct work_struct *work)
struct pn533_frame *in_frame; struct pn533_frame *in_frame;
int rc; int rc;
if (dev == NULL)
return;
in_frame = dev->wq_in_frame; in_frame = dev->wq_in_frame;
if (dev->wq_in_error) if (dev->wq_in_error)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment