PDP11, VAX: Fix stray TABs which crept in over time
This commit is contained in:
parent
7092c55907
commit
47c917a55d
2 changed files with 16 additions and 16 deletions
|
@ -164,18 +164,18 @@ MTAB dli_mod[] = {
|
|||
#define DBG_TRC TMXR_DBG_TRC /* routine calls */
|
||||
|
||||
DEBTAB dl_debug[] = {
|
||||
{ "REG", DBG_REG, "Register Activities" },
|
||||
{ "INT", DBG_INT, "Interrupt Activities" },
|
||||
{ "XMT", TMXR_DBG_XMT, "Transmit Data" },
|
||||
{ "RCV", TMXR_DBG_RCV, "Received Data" },
|
||||
{ "RET", TMXR_DBG_RET, "Returned Received Data" },
|
||||
{ "MDM", TMXR_DBG_MDM, "Modem Signals" },
|
||||
{ "CON", TMXR_DBG_CON, "Connection Activities" },
|
||||
{ "ASY", TMXR_DBG_ASY, "Asynchronous Activities" },
|
||||
{ "TRC", DBG_TRC, "trace routine calls" },
|
||||
{ "EXP", TMXR_DBG_EXP, "Expect Activities" },
|
||||
{ "SEND", TMXR_DBG_SEND, "Send Activities" },
|
||||
{ 0 }
|
||||
{ "REG", DBG_REG, "Register Activities" },
|
||||
{ "INT", DBG_INT, "Interrupt Activities" },
|
||||
{ "XMT", TMXR_DBG_XMT, "Transmit Data" },
|
||||
{ "RCV", TMXR_DBG_RCV, "Received Data" },
|
||||
{ "RET", TMXR_DBG_RET, "Returned Received Data" },
|
||||
{ "MDM", TMXR_DBG_MDM, "Modem Signals" },
|
||||
{ "CON", TMXR_DBG_CON, "Connection Activities" },
|
||||
{ "ASY", TMXR_DBG_ASY, "Asynchronous Activities" },
|
||||
{ "TRC", DBG_TRC, "trace routine calls" },
|
||||
{ "EXP", TMXR_DBG_EXP, "Expect Activities" },
|
||||
{ "SEND", TMXR_DBG_SEND, "Send Activities" },
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -396,7 +396,7 @@ if (new_val != ctx->iport) {
|
|||
ctx->ipcr |= (new_val & 0x0f);
|
||||
ctx->ipcr |= 0x10;
|
||||
if (ctx->acr & 0x01)
|
||||
ctx->ists |= ISTS_IPC;
|
||||
ctx->ists |= ISTS_IPC;
|
||||
}
|
||||
|
||||
ctx->iport = new_val;
|
||||
|
@ -411,7 +411,7 @@ if (new_val != ctx->iport) {
|
|||
ctx->ipcr |= (new_val & 0x0f);
|
||||
ctx->ipcr |= 0x20;
|
||||
if (ctx->acr & 0x02)
|
||||
ctx->ists |= ISTS_IPC;
|
||||
ctx->ists |= ISTS_IPC;
|
||||
}
|
||||
|
||||
ctx->iport = new_val;
|
||||
|
@ -426,7 +426,7 @@ if (new_val != ctx->iport) {
|
|||
ctx->ipcr |= (new_val & 0x0f);
|
||||
ctx->ipcr |= 0x40;
|
||||
if (ctx->acr & 0x04)
|
||||
ctx->ists |= ISTS_IPC;
|
||||
ctx->ists |= ISTS_IPC;
|
||||
}
|
||||
|
||||
ctx->iport = new_val;
|
||||
|
@ -441,7 +441,7 @@ if (new_val != ctx->iport) {
|
|||
ctx->ipcr |= (new_val & 0x0f);
|
||||
ctx->ipcr |= 0x80;
|
||||
if (ctx->acr & 0x08)
|
||||
ctx->ists |= ISTS_IPC;
|
||||
ctx->ists |= ISTS_IPC;
|
||||
}
|
||||
|
||||
ctx->iport = new_val;
|
||||
|
|
Loading…
Add table
Reference in a new issue