[Bug 200987] sys/dev/ixgbe/ixgbe.c:1058: bad if statement ?

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sat Jun 20 08:37:58 UTC 2015


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200987

            Bug ID: 200987
           Summary: sys/dev/ixgbe/ixgbe.c:1058: bad if statement ?
           Product: Base System
           Version: 10.1-RELEASE
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: misc
          Assignee: freebsd-bugs at FreeBSD.org
          Reporter: dcb314 at hotmail.com

sys/dev/ixgbe/ixgbe.c:1058]: (warning)
 Logical disjunction always evaluates to true: EXPR != 160 || EXPR != 162.

   if ((i2c.dev_addr != 0xA0) || (i2c.dev_addr != 0xA2)){

Maybe

   if ((i2c.dev_addr != 0xA0) && (i2c.dev_addr != 0xA2)){

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-bugs mailing list