-
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: 269423 b: refs/heads/master c: ea5abbd h: refs/heads/master i: 269421: 48736aa 269419: a18f88f 269415: 603ed3f 269407: 1e8d79f v: v3
- Loading branch information
Stephen Warren
authored and
Russell King
committed
Sep 26, 2011
1 parent
80e4aa4
commit 588e1f5
Showing
10 changed files
with
52 additions
and
40 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: ab05be0572bb9e17d7fe744b60724d2eaceb1beb | ||
refs/heads/master: ea5abbd215b749b2ff14397a47a5e65741c67bf4 |
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,39 @@ | ||
/* | ||
* arch/arm/mach-tegra/include/mach/gpio.h | ||
* | ||
* Copyright (C) 2010 Google, Inc. | ||
* | ||
* Author: | ||
* Erik Gilling <konkers@google.com> | ||
* | ||
* This software is licensed under the terms of the GNU General Public | ||
* License version 2, as published by the Free Software Foundation, and | ||
* may be copied, distributed, and modified under those terms. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
*/ | ||
|
||
#ifndef __MACH_TEGRA_GPIO_TEGRA_H | ||
#define __MACH_TEGRA_GPIO_TEGRA_H | ||
|
||
#include <linux/types.h> | ||
#include <mach/irqs.h> | ||
|
||
#define TEGRA_NR_GPIOS INT_GPIO_NR | ||
|
||
#define TEGRA_GPIO_TO_IRQ(gpio) (INT_GPIO_BASE + (gpio)) | ||
|
||
struct tegra_gpio_table { | ||
int gpio; /* GPIO number */ | ||
bool enable; /* Enable for GPIO at init? */ | ||
}; | ||
|
||
void tegra_gpio_config(struct tegra_gpio_table *table, int num); | ||
void tegra_gpio_enable(int gpio); | ||
void tegra_gpio_disable(int gpio); | ||
|
||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +0,0 @@ | ||
/* | ||
* arch/arm/mach-tegra/include/mach/gpio.h | ||
* | ||
* Copyright (C) 2010 Google, Inc. | ||
* | ||
* Author: | ||
* Erik Gilling <konkers@google.com> | ||
* | ||
* This software is licensed under the terms of the GNU General Public | ||
* License version 2, as published by the Free Software Foundation, and | ||
* may be copied, distributed, and modified under those terms. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
*/ | ||
|
||
#ifndef __MACH_TEGRA_GPIO_H | ||
#define __MACH_TEGRA_GPIO_H | ||
|
||
#include <linux/types.h> | ||
#include <mach/irqs.h> | ||
|
||
#define TEGRA_NR_GPIOS INT_GPIO_NR | ||
|
||
#define TEGRA_GPIO_TO_IRQ(gpio) (INT_GPIO_BASE + (gpio)) | ||
|
||
struct tegra_gpio_table { | ||
int gpio; /* GPIO number */ | ||
bool enable; /* Enable for GPIO at init? */ | ||
}; | ||
|
||
void tegra_gpio_config(struct tegra_gpio_table *table, int num); | ||
void tegra_gpio_enable(int gpio); | ||
void tegra_gpio_disable(int gpio); | ||
|
||
#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
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