-
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.
ARM: 7101/1: arm/tegra: Replace <mach/gpio.h> with <mach/gpio-tegra.h>
This will eventually allow <mach/gpio.h> to be deleted. This mirrors LinusW's recent equivalent work on various other ARM platforms. Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Olof Johansson <olof@lixom.net> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
- Loading branch information
Stephen Warren
authored and
Russell King
committed
Sep 26, 2011
1 parent
ab05be0
commit ea5abbd
Showing
9 changed files
with
51 additions
and
39 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
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