X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=arch%2Farm%2Finclude%2Fasm%2Fomap_gpio.h;h=20268fa084e4eaac894e4aea6471c26fb3577e15;hb=14249635b6aa7615f356099cfb349d0a820f9bed;hp=839af54d482e9fbc9e03c5a777eb9317566681ea;hpb=1fba907f9a8d178eee960294ecffc8ee8bc6b00d;p=u-boot diff --git a/arch/arm/include/asm/omap_gpio.h b/arch/arm/include/asm/omap_gpio.h index 839af54d48..20268fa084 100644 --- a/arch/arm/include/asm/omap_gpio.h +++ b/arch/arm/include/asm/omap_gpio.h @@ -1,9 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (c) 2009 Wind River Systems, Inc. * Tom Rix * - * SPDX-License-Identifier: GPL-2.0 - * * This work is derived from the linux 2.6.27 kernel source * To fetch, use the kernel repository * git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git @@ -23,24 +22,19 @@ #include -enum gpio_method { - METHOD_GPIO_24XX = 4, -}; - #ifdef CONFIG_DM_GPIO /* Information about a GPIO bank */ struct omap_gpio_platdata { int bank_index; ulong base; /* address of registers in physical memory */ - enum gpio_method method; + const char *port_name; }; #else struct gpio_bank { void *base; - int method; }; extern const struct gpio_bank *const omap_gpio_bank;