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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user