process.c (4f2c0a4acffbec01079c28f839422e64ddeff004) | process.c (89b3098703bd2aa3237ef10a704e6a5838e6ea69) |
---|---|
1/* 2 * Architecture-dependent parts of process handling. 3 * 4 * Copyright (C) 2013 Altera Corporation 5 * Copyright (C) 2010 Tobias Klauser <tklauser@distanz.ch> 6 * Copyright (C) 2009 Wind River Systems Inc 7 * Implemented by fredrik.markstrom@gmail.com and ivarholmqvist@gmail.com 8 * Copyright (C) 2004 Microtronix Datacom Ltd --- 19 unchanged lines hidden (view full) --- 28asmlinkage void ret_from_fork(void); 29asmlinkage void ret_from_kernel_thread(void); 30 31void (*pm_power_off)(void) = NULL; 32EXPORT_SYMBOL(pm_power_off); 33 34void arch_cpu_idle(void) 35{ | 1/* 2 * Architecture-dependent parts of process handling. 3 * 4 * Copyright (C) 2013 Altera Corporation 5 * Copyright (C) 2010 Tobias Klauser <tklauser@distanz.ch> 6 * Copyright (C) 2009 Wind River Systems Inc 7 * Implemented by fredrik.markstrom@gmail.com and ivarholmqvist@gmail.com 8 * Copyright (C) 2004 Microtronix Datacom Ltd --- 19 unchanged lines hidden (view full) --- 28asmlinkage void ret_from_fork(void); 29asmlinkage void ret_from_kernel_thread(void); 30 31void (*pm_power_off)(void) = NULL; 32EXPORT_SYMBOL(pm_power_off); 33 34void arch_cpu_idle(void) 35{ |
36 raw_local_irq_enable(); | |
37} 38 39/* 40 * The development boards have no way to pull a board reset. Just jump to the 41 * cpu reset address and let the boot loader or the code in head.S take care of 42 * resetting peripherals. 43 */ 44void machine_restart(char *__unused) --- 225 unchanged lines hidden --- | 36} 37 38/* 39 * The development boards have no way to pull a board reset. Just jump to the 40 * cpu reset address and let the boot loader or the code in head.S take care of 41 * resetting peripherals. 42 */ 43void machine_restart(char *__unused) --- 225 unchanged lines hidden --- |