X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/5803cbb537690276baf7c6dd70323ea483cb8ca3..f8c314a2455ed986b8d73d1aa7cb61a1448f4077:/target/linux/ixp4xx/patches-2.6.35/402-ixp4xx_gpiolib.patch diff --git a/target/linux/ixp4xx/patches-2.6.35/402-ixp4xx_gpiolib.patch b/target/linux/ixp4xx/patches-2.6.35/402-ixp4xx_gpiolib.patch index 0d5a25378..522550713 100644 --- a/target/linux/ixp4xx/patches-2.6.35/402-ixp4xx_gpiolib.patch +++ b/target/linux/ixp4xx/patches-2.6.35/402-ixp4xx_gpiolib.patch @@ -1,6 +1,6 @@ --- a/arch/arm/mach-ixp4xx/common.c +++ b/arch/arm/mach-ixp4xx/common.c -@@ -36,6 +36,7 @@ +@@ -35,6 +35,7 @@ #include #include #include @@ -8,7 +8,7 @@ #include #include -@@ -375,12 +376,39 @@ static struct platform_device *ixp46x_de +@@ -374,12 +375,50 @@ static struct platform_device *ixp46x_de unsigned long ixp4xx_exp_bus_size; EXPORT_SYMBOL(ixp4xx_exp_bus_size); @@ -17,7 +17,6 @@ + gpio_line_config(gpio, IXP4XX_GPIO_IN); + return 0; +} -+EXPORT_SYMBOL(ixp4xx_gpio_direction_input); + +static int ixp4xx_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int level) +{ @@ -25,14 +24,26 @@ + gpio_line_config(gpio, IXP4XX_GPIO_OUT); + return 0; +} -+EXPORT_SYMBOL(ixp4xx_gpio_direction_output); ++ ++static int ixp4xx_gpio_get_value(struct gpio_chip *chip, unsigned gpio) ++{ ++ int value; ++ ++ gpio_line_get(gpio, &value); ++ return value; ++} ++ ++static void ixp4xx_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value) ++{ ++ gpio_line_set(gpio, value); ++} + +static struct gpio_chip ixp4xx_gpio_chip = { + .label = "IXP4XX_GPIO_CHIP", + .direction_input = ixp4xx_gpio_direction_input, + .direction_output = ixp4xx_gpio_direction_output, -+ .get = gpio_get_value, -+ .set = gpio_set_value, ++ .get = ixp4xx_gpio_get_value, ++ .set = ixp4xx_gpio_set_value, + .base = 0, + .ngpio = 16, +}; @@ -50,9 +61,9 @@ --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig -@@ -417,6 +417,7 @@ config ARCH_IXP4XX +@@ -435,6 +435,7 @@ config ARCH_IXP4XX + select CPU_XSCALE select GENERIC_GPIO - select GENERIC_TIME select GENERIC_CLOCKEVENTS + select ARCH_REQUIRE_GPIOLIB help