Эх сурвалжийг харах

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: Dan Carpenter <error27@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Dan Carpenter 14 жил өмнө
parent
commit
b01627c608

+ 1 - 1
drivers/staging/tm6000/tm6000-input.c

@@ -374,7 +374,7 @@ int tm6000_ir_init(struct tm6000_core *dev)
 
 
 	ir = kzalloc(sizeof(*ir), GFP_KERNEL);
 	ir = kzalloc(sizeof(*ir), GFP_KERNEL);
 	rc = rc_allocate_device();
 	rc = rc_allocate_device();
-	if (!ir | !rc)
+	if (!ir || !rc)
 		goto out;
 		goto out;
 
 
 	/* record handles to ourself */
 	/* record handles to ourself */