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

Commit b01627c6 authored by Dan Carpenter's avatar Dan Carpenter Committed by Greg Kroah-Hartman
Browse files

Staging: tm6000: silence Sparse warning "dubious: !x | !y"



Bitwise and logical or are the equivalent here, so this doesn't affect
runtime, but logical or was intended.  The original code causes a
warning in Sparse:  "warning: dubious: !x | !y"

Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent aa96646d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -374,7 +374,7 @@ int tm6000_ir_init(struct tm6000_core *dev)

	ir = kzalloc(sizeof(*ir), GFP_KERNEL);
	rc = rc_allocate_device();
	if (!ir | !rc)
	if (!ir || !rc)
		goto out;

	/* record handles to ourself */