mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-15 21:30:43 +00:00
gpio: tegra: Iterate over the correct number of banks
When Tegra30 support was added to the Tegra GPIO driver, a few places which iterated over all banks were not converted to use the variable tegra_gpio_bank_count rather than hard-coding the bank count. Fix this. Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
5c1e2c9dc6
commit
4a3398ee9d
@ -436,7 +436,7 @@ static int __devinit tegra_gpio_probe(struct platform_device *pdev)
|
|||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < 7; i++) {
|
for (i = 0; i < tegra_gpio_bank_count; i++) {
|
||||||
for (j = 0; j < 4; j++) {
|
for (j = 0; j < 4; j++) {
|
||||||
int gpio = tegra_gpio_compose(i, j, 0);
|
int gpio = tegra_gpio_compose(i, j, 0);
|
||||||
tegra_gpio_writel(0x00, GPIO_INT_ENB(gpio));
|
tegra_gpio_writel(0x00, GPIO_INT_ENB(gpio));
|
||||||
@ -514,7 +514,7 @@ static int dbg_gpio_show(struct seq_file *s, void *unused)
|
|||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
for (i = 0; i < 7; i++) {
|
for (i = 0; i < tegra_gpio_bank_count; i++) {
|
||||||
for (j = 0; j < 4; j++) {
|
for (j = 0; j < 4; j++) {
|
||||||
int gpio = tegra_gpio_compose(i, j, 0);
|
int gpio = tegra_gpio_compose(i, j, 0);
|
||||||
seq_printf(s,
|
seq_printf(s,
|
||||||
|
Loading…
Reference in New Issue
Block a user