Changeset 7ed2d8f in mainline for kernel/arch/sparc64/src/mm/tlb.c


Ignore:
Timestamp:
2009-01-07T22:55:52Z (17 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c571f42
Parents:
06b2b7f
Message:

Unify newlines in fault_if_from_uspace() format strings. (Remove them and print newline automatically). Also start messages with caps.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/mm/tlb.c

    r06b2b7f r7ed2d8f  
    425425    const char *str)
    426426{
    427         fault_if_from_uspace(istate, "%s\n", str);
     427        fault_if_from_uspace(istate, "%s", str);
    428428        dump_istate(istate);
    429429        panic("%s\n", str);
     
    437437        va = tag.vpn << MMU_PAGE_WIDTH;
    438438        if (tag.context) {
    439                 fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)\n", str, va,
     439                fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)", str, va,
    440440                    tag.context);
    441441        }
     
    453453
    454454        if (tag.context) {
    455                 fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)\n", str, va,
     455                fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)", str, va,
    456456                    tag.context);
    457457        }
Note: See TracChangeset for help on using the changeset viewer.