diff options
Diffstat (limited to 'sys/arch/pmax/tc')
-rw-r--r-- | sys/arch/pmax/tc/asic.c | 8 | ||||
-rw-r--r-- | sys/arch/pmax/tc/tc.c | 4 | ||||
-rw-r--r-- | sys/arch/pmax/tc/tc_subr.c | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/pmax/tc/asic.c b/sys/arch/pmax/tc/asic.c index 7cb367b7dae..407a4b17fa5 100644 --- a/sys/arch/pmax/tc/asic.c +++ b/sys/arch/pmax/tc/asic.c @@ -188,7 +188,7 @@ asicattach(parent, self, aux) extern int cputype; if (asic_slots == NULL) - panic("asicattach: no asic_slot map\n"); + panic("asicattach: no asic_slot map"); IOASIC_DPRINTF(("asicattach: %s\n", sc->sc_dv.dv_xname)); @@ -225,7 +225,7 @@ asicattach(parent, self, aux) i, sc->sc_base)); nca = &asic_slots[i].as_ca; - if (nca == NULL) panic ("bad asic table\n"); + if (nca == NULL) panic ("bad asic table"); if (nca->ca_name == NULL || nca->ca_name[0] == 0) break; nca->ca_addr = ((u_int)sc->sc_base) + nca->ca_offset; @@ -325,7 +325,7 @@ asic_intr_disestablish(ca) { #ifdef pmax - panic("asic_intr_disestablish: shouldn't ever be called\n"); + panic("asic_intr_disestablish: shouldn't ever be called"); #else if (ca->ca_slot == IOASIC_SLOT_RTC) panic("asic_intr_disestablish: can't do clock interrupt"); @@ -396,7 +396,7 @@ asic_intrnull(val) intr_arg_t val; { - panic("uncaught IOCTL ASIC intr for slot %ld\n", (long)val); + panic("uncaught IOCTL ASIC intr for slot %ld", (long)val); } diff --git a/sys/arch/pmax/tc/tc.c b/sys/arch/pmax/tc/tc.c index 8a0654b7995..acd4c69d074 100644 --- a/sys/arch/pmax/tc/tc.c +++ b/sys/arch/pmax/tc/tc.c @@ -167,7 +167,7 @@ cpu_tcdesc(cpu) printf("tcattach: Mipsfair (5100), no turbochannel\n"); return NULL; } else { - panic("cpu_tc: Unrecognized bus type 0x%x\n", cpu); + panic("cpu_tc: Unrecognized bus type 0x%x", cpu); } } @@ -309,7 +309,7 @@ tc_ds_intr_establish(dev, cookie, level, handler, val) #ifdef DIAGNOSTIC if (tc_enable_interrupt == NULL) - panic("tc_intr_establish: tc_enable not set\n"); + panic("tc_intr_establish: tc_enable not set"); #endif #ifdef DEBUG diff --git a/sys/arch/pmax/tc/tc_subr.c b/sys/arch/pmax/tc/tc_subr.c index 6e01cb20a21..0cc3fed6fe2 100644 --- a/sys/arch/pmax/tc/tc_subr.c +++ b/sys/arch/pmax/tc/tc_subr.c @@ -307,7 +307,7 @@ cpu_tcdesc(cpu) printf("tcattach: Mipsfair (5100), no turbochannel\n"); return NULL; } else { - panic("cpu_tc: Unrecognized bus type 0x%x\n", cpu); + panic("cpu_tc: Unrecognized bus type 0x%x", cpu); } } @@ -458,7 +458,7 @@ tc_ds_intr_establish(dev, cookie, level, handler, val) #ifdef DIAGNOSTIC if (tc_enable_interrupt == NULL) - panic("tc_intr_establish: tc_enable not set\n"); + panic("tc_intr_establish: tc_enable not set"); #endif #ifdef DEBUG |