mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-11-29 22:51:49 +01:00
gpio: omap_gpio: Fix unused function warning in non-DM case
In the case of non-DM_GPIO the function get_gpio_index() will never be called, and clang will warn about this. Move this to be with the other non-DM code for easier removal later. Cc: Lokesh Vutla <lokeshvutla@ti.com> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
This commit is contained in:
parent
f18f823c13
commit
a37f765219
@ -41,11 +41,6 @@ struct gpio_bank {
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static inline int get_gpio_index(int gpio)
|
|
||||||
{
|
|
||||||
return gpio & 0x1f;
|
|
||||||
}
|
|
||||||
|
|
||||||
int gpio_is_valid(int gpio)
|
int gpio_is_valid(int gpio)
|
||||||
{
|
{
|
||||||
return (gpio >= 0) && (gpio < OMAP_MAX_GPIO);
|
return (gpio >= 0) && (gpio < OMAP_MAX_GPIO);
|
||||||
@ -122,6 +117,10 @@ static int _get_gpio_value(const struct gpio_bank *bank, int gpio)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if !CONFIG_IS_ENABLED(DM_GPIO)
|
#if !CONFIG_IS_ENABLED(DM_GPIO)
|
||||||
|
static inline int get_gpio_index(int gpio)
|
||||||
|
{
|
||||||
|
return gpio & 0x1f;
|
||||||
|
}
|
||||||
|
|
||||||
static inline const struct gpio_bank *get_gpio_bank(int gpio)
|
static inline const struct gpio_bank *get_gpio_bank(int gpio)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user