diff options
| author | Geert Uytterhoeven <geert+renesas@glider.be> | 2015-12-04 10:33:52 -0500 |
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2015-12-11 04:11:26 -0500 |
| commit | 8b092be9fd6a2cd84c437128e9b0d85e364efcfb (patch) | |
| tree | 8c92b64adead04096d619c5116b32f9cab8c9df0 /include/linux/platform_data | |
| parent | 0d1bb2b3b838e6731b5900bb3513c10027cb028c (diff) | |
gpio: rcar: Remove obsolete platform data support
Since commit 4baadb9e05c68962 ("ARM: shmobile: r8a7778: remove obsolete
setup code"), Renesas R-Car SoCs are only supported in generic DT-only
ARM multi-platform builds. The driver doesn't need to use platform data
anymore, hence remove platform data configuration.
Make gpio_rcar_priv.has_both_edge_trigger a boolean for consistency with
gpio_rcar_info.has_both_edge_trigger.
Move gpio_rcar_priv.irq_parent down while we're at it, to prevent gaps
on 64-bit.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'include/linux/platform_data')
| -rw-r--r-- | include/linux/platform_data/gpio-rcar.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/include/linux/platform_data/gpio-rcar.h b/include/linux/platform_data/gpio-rcar.h deleted file mode 100644 index 2d8d69432813..000000000000 --- a/include/linux/platform_data/gpio-rcar.h +++ /dev/null | |||
| @@ -1,29 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Renesas R-Car GPIO Support | ||
| 3 | * | ||
| 4 | * Copyright (C) 2013 Magnus Damm | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | */ | ||
| 15 | |||
| 16 | #ifndef __GPIO_RCAR_H__ | ||
| 17 | #define __GPIO_RCAR_H__ | ||
| 18 | |||
| 19 | struct gpio_rcar_config { | ||
| 20 | int gpio_base; | ||
| 21 | unsigned int irq_base; | ||
| 22 | unsigned int number_of_pins; | ||
| 23 | const char *pctl_name; | ||
| 24 | unsigned has_both_edge_trigger:1; | ||
| 25 | }; | ||
| 26 | |||
| 27 | #define RCAR_GP_PIN(bank, pin) (((bank) * 32) + (pin)) | ||
| 28 | |||
| 29 | #endif /* __GPIO_RCAR_H__ */ | ||
