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 */
|
#define DBG_TRC TMXR_DBG_TRC /* routine calls */
|
||||||
|
|
||||||
DEBTAB dl_debug[] = {
|
DEBTAB dl_debug[] = {
|
||||||
{ "REG", DBG_REG, "Register Activities" },
|
{ "REG", DBG_REG, "Register Activities" },
|
||||||
{ "INT", DBG_INT, "Interrupt Activities" },
|
{ "INT", DBG_INT, "Interrupt Activities" },
|
||||||
{ "XMT", TMXR_DBG_XMT, "Transmit Data" },
|
{ "XMT", TMXR_DBG_XMT, "Transmit Data" },
|
||||||
{ "RCV", TMXR_DBG_RCV, "Received Data" },
|
{ "RCV", TMXR_DBG_RCV, "Received Data" },
|
||||||
{ "RET", TMXR_DBG_RET, "Returned Received Data" },
|
{ "RET", TMXR_DBG_RET, "Returned Received Data" },
|
||||||
{ "MDM", TMXR_DBG_MDM, "Modem Signals" },
|
{ "MDM", TMXR_DBG_MDM, "Modem Signals" },
|
||||||
{ "CON", TMXR_DBG_CON, "Connection Activities" },
|
{ "CON", TMXR_DBG_CON, "Connection Activities" },
|
||||||
{ "ASY", TMXR_DBG_ASY, "Asynchronous Activities" },
|
{ "ASY", TMXR_DBG_ASY, "Asynchronous Activities" },
|
||||||
{ "TRC", DBG_TRC, "trace routine calls" },
|
{ "TRC", DBG_TRC, "trace routine calls" },
|
||||||
{ "EXP", TMXR_DBG_EXP, "Expect Activities" },
|
{ "EXP", TMXR_DBG_EXP, "Expect Activities" },
|
||||||
{ "SEND", TMXR_DBG_SEND, "Send Activities" },
|
{ "SEND", TMXR_DBG_SEND, "Send Activities" },
|
||||||
{ 0 }
|
{ 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -396,7 +396,7 @@ if (new_val != ctx->iport) {
|
||||||
ctx->ipcr |= (new_val & 0x0f);
|
ctx->ipcr |= (new_val & 0x0f);
|
||||||
ctx->ipcr |= 0x10;
|
ctx->ipcr |= 0x10;
|
||||||
if (ctx->acr & 0x01)
|
if (ctx->acr & 0x01)
|
||||||
ctx->ists |= ISTS_IPC;
|
ctx->ists |= ISTS_IPC;
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx->iport = new_val;
|
ctx->iport = new_val;
|
||||||
|
@ -411,7 +411,7 @@ if (new_val != ctx->iport) {
|
||||||
ctx->ipcr |= (new_val & 0x0f);
|
ctx->ipcr |= (new_val & 0x0f);
|
||||||
ctx->ipcr |= 0x20;
|
ctx->ipcr |= 0x20;
|
||||||
if (ctx->acr & 0x02)
|
if (ctx->acr & 0x02)
|
||||||
ctx->ists |= ISTS_IPC;
|
ctx->ists |= ISTS_IPC;
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx->iport = new_val;
|
ctx->iport = new_val;
|
||||||
|
@ -426,7 +426,7 @@ if (new_val != ctx->iport) {
|
||||||
ctx->ipcr |= (new_val & 0x0f);
|
ctx->ipcr |= (new_val & 0x0f);
|
||||||
ctx->ipcr |= 0x40;
|
ctx->ipcr |= 0x40;
|
||||||
if (ctx->acr & 0x04)
|
if (ctx->acr & 0x04)
|
||||||
ctx->ists |= ISTS_IPC;
|
ctx->ists |= ISTS_IPC;
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx->iport = new_val;
|
ctx->iport = new_val;
|
||||||
|
@ -441,7 +441,7 @@ if (new_val != ctx->iport) {
|
||||||
ctx->ipcr |= (new_val & 0x0f);
|
ctx->ipcr |= (new_val & 0x0f);
|
||||||
ctx->ipcr |= 0x80;
|
ctx->ipcr |= 0x80;
|
||||||
if (ctx->acr & 0x08)
|
if (ctx->acr & 0x08)
|
||||||
ctx->ists |= ISTS_IPC;
|
ctx->ists |= ISTS_IPC;
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx->iport = new_val;
|
ctx->iport = new_val;
|
||||||
|
|
Loading…
Add table
Reference in a new issue