OSDN Git Service

sim: mn10300: fix typo in if check
authorvapier <vapier>
Mon, 7 Nov 2011 16:26:05 +0000 (16:26 +0000)
committervapier <vapier>
Mon, 7 Nov 2011 16:26:05 +0000 (16:26 +0000)
The code looks like it should be doing a bit check, not logical.

URL: http://sourceware.org/bugzilla/show_bug.cgi?id=9302
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
sim/mn10300/dv-mn103iop.c

index 15a299d..8134377 100644 (file)
@@ -463,7 +463,7 @@ write_dedicated_control_reg (struct hw *me,
       /* select on io_port_reg: */
       if ( io_port_reg == P2SS )
        {
-         if ( (buf && 0xfc)  != 0 )
+         if ( (buf & 0xfc)  != 0 )
            {
              hw_abort(me, "Cannot write to read-only bits in p2ss.");
            }
@@ -474,7 +474,7 @@ write_dedicated_control_reg (struct hw *me,
        }
       else
        {
-         if ( (buf && 0xf0) != 0 )
+         if ( (buf & 0xf0) != 0 )
            {
              hw_abort(me, "Cannot write to read-only bits in p4ss.");
            }