staging/silicom/bypasslib: Add space around &&

Added space around double ampersands to resolve checkpatch errors
and meet kernel coding standards in bplibk.h

Signed-off-by: Lisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Lisa Nguyen 2013-05-23 13:53:12 -07:00 committed by Greg Kroah-Hartman
parent d8195f86b4
commit 14cd6f9941
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
#define INTEL_PEG4BPFII_PID 0x10a1
#define PEGII_IF_SERIES(vid, pid) \
((vid == 0x8086)&& \
((vid == 0x8086) && \
((pid == INTEL_PEG4BPII_PID)|| \
(pid == INTEL_PEG4BPFII_PID)))