Lines Matching refs:address
84 void do_memory_error(unsigned long address, struct pt_regs *regs) in do_memory_error() argument
86 printf("Memory error exception @ 0x%lx\n", address); in do_memory_error()
90 void do_instruction_error(unsigned long address, struct pt_regs *regs) in do_instruction_error() argument
92 printf("Instruction error exception @ 0x%lx\n", address); in do_instruction_error()
96 void do_machine_check_fault(unsigned long address, struct pt_regs *regs) in do_machine_check_fault() argument
98 printf("Machine check exception @ 0x%lx\n", address); in do_machine_check_fault()
120 void do_tlb_prot_violation(unsigned long address, struct pt_regs *regs) in do_tlb_prot_violation() argument
123 address); in do_tlb_prot_violation()
152 void do_divzero(unsigned long address, struct pt_regs *regs) in do_divzero() argument
154 printf("Division by zero exception @ 0x%lx\n", address); in do_divzero()
164 void do_maligned(unsigned long address, struct pt_regs *regs) in do_maligned() argument
166 printf("Misaligned data access exception @ 0x%lx\n", address); in do_maligned()