style: Fix line continuation, especially in debug messages

This patch closes a number of space gaps in debug messages caused by
the incorrect use of line continuation within strings. (There's also
one consistency change to a similar, but correct, use of line
continuation)
This commit is contained in:
Andrew Bardsley
2014-09-12 10:22:47 -04:00
parent 2b4906fc64
commit c8b919aba2
8 changed files with 23 additions and 22 deletions

View File

@@ -196,8 +196,8 @@ Pl111::read(PacketPtr pkt)
data = lcdPalette[index];
break;
} else {
panic("Tried to read CLCD register at offset %#x that \
doesn't exist\n", daddr);
panic("Tried to read CLCD register at offset %#x that "
"doesn't exist\n", daddr);
break;
}
}
@@ -369,8 +369,8 @@ Pl111::write(PacketPtr pkt)
lcdPalette[index] = data;
break;
} else {
panic("Tried to write PL111 register at offset %#x that \
doesn't exist\n", daddr);
panic("Tried to write PL111 register at offset %#x that "
"doesn't exist\n", daddr);
break;
}
}

View File

@@ -732,8 +732,8 @@ NSGigE::write(PacketPtr pkt)
= (uint8_t)(reg >> 8);
break;
}
panic("writing RFDR for something other than pattern matching\
or hashing! %#x\n", rfaddr);
panic("writing RFDR for something other than pattern matching "
"or hashing! %#x\n", rfaddr);
}
case BRAR: