-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 327022 b: refs/heads/master c: ee2f573 h: refs/heads/master v: v3
- Loading branch information
Tomasz Figa
authored and
Kukjin Kim
committed
Sep 20, 2012
1 parent
d14f1d0
commit 7001b7f
Showing
167 changed files
with
8,296 additions
and
7,300 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 78901d05e727a0eb28209e9210a92078af3117f2 | ||
refs/heads/master: ee2f573c4206ff3c4dbff2296c8d383d045c80a2 |
10 changes: 0 additions & 10 deletions
10
trunk/Documentation/devicetree/bindings/bus/omap-ocp2scp.txt
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
trunk/Documentation/devicetree/bindings/media/exynos5-gsc.txt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* arch/arm/include/asm/leds.h | ||
* | ||
* Copyright (C) 1998 Russell King | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
* | ||
* Event-driven interface for LEDs on machines | ||
* Added led_start and led_stop- Alex Holden, 28th Dec 1998. | ||
*/ | ||
#ifndef ASM_ARM_LEDS_H | ||
#define ASM_ARM_LEDS_H | ||
|
||
|
||
typedef enum { | ||
led_idle_start, | ||
led_idle_end, | ||
led_timer, | ||
led_start, | ||
led_stop, | ||
led_claim, /* override idle & timer leds */ | ||
led_release, /* restore idle & timer leds */ | ||
led_start_timer_mode, | ||
led_stop_timer_mode, | ||
led_green_on, | ||
led_green_off, | ||
led_amber_on, | ||
led_amber_off, | ||
led_red_on, | ||
led_red_off, | ||
led_blue_on, | ||
led_blue_off, | ||
/* | ||
* I want this between led_timer and led_start, but | ||
* someone has decided to export this to user space | ||
*/ | ||
led_halted | ||
} led_event_t; | ||
|
||
/* Use this routine to handle LEDs */ | ||
|
||
#ifdef CONFIG_LEDS | ||
extern void (*leds_event)(led_event_t); | ||
#else | ||
#define leds_event(e) | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.