/* * Cobalt Reset operations * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 1995, 1996, 1997 by Ralf Baechle * Copyright (C) 2001 by Liam Davies (ldavies@agile.tv) */ #include <linux/init.h> #include <linux/io.h> #include <linux/leds.h> #include <asm/idle.h> #include <asm/processor.h> #include <cobalt.h> #define RESET_PORT ((void __iomem *)CKSEG1ADDR(0x1c000000)) #define RESET 0x0f DEFINE_LED_TRIGGER(power_off_led_trigger);
static int __init ledtrig_power_off_init(void) { led_trigger_register_simple("power-off", &power_off_led_trigger); return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoichi Yuasa | 20 | 100.00% | 1 | 100.00% |
Total | 20 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Yoichi Yuasa | 21 | 67.74% | 3 | 60.00% |
Ralf Bächle | 10 | 32.26% | 2 | 40.00% |
Total | 31 | 100.00% | 5 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 14 | 70.00% | 1 | 50.00% |
Yoichi Yuasa | 6 | 30.00% | 1 | 50.00% |
Total | 20 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Yoichi Yuasa | 74 | 68.52% | 5 | 62.50% |
Ralf Bächle | 34 | 31.48% | 3 | 37.50% |
Total | 108 | 100.00% | 8 | 100.00% |