diff mbox

[162/182] mfd: dm355evm_msp: switch to gpiochip_add_data()

Message ID 1449668849-6213-1-git-send-email-linus.walleij@linaro.org
State New
Headers show

Commit Message

Linus Walleij Dec. 9, 2015, 1:47 p.m. UTC
We're planning to remove the gpiochip_add() function to swith
to gpiochip_add_data() with NULL for data argument.

Cc: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

---
Lee please ACK this so I can take it through the GPIO tree.
---
 drivers/mfd/dm355evm_msp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.4.3

--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Lee Jones Dec. 10, 2015, 10:36 a.m. UTC | #1
On Wed, 09 Dec 2015, Linus Walleij wrote:

> We're planning to remove the gpiochip_add() function to swith

> to gpiochip_add_data() with NULL for data argument.

> 

> Cc: Lee Jones <lee.jones@linaro.org>

> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

> ---

> Lee please ACK this so I can take it through the GPIO tree.

> ---

>  drivers/mfd/dm355evm_msp.c | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)


Acked-by: Lee Jones <lee.jones@linaro.org>


> diff --git a/drivers/mfd/dm355evm_msp.c b/drivers/mfd/dm355evm_msp.c

> index bc90efe01b59..d2c9a0dda531 100644

> --- a/drivers/mfd/dm355evm_msp.c

> +++ b/drivers/mfd/dm355evm_msp.c

> @@ -260,7 +260,7 @@ static int add_children(struct i2c_client *client)

>  

>  	/* GPIO-ish stuff */

>  	dm355evm_msp_gpio.parent = &client->dev;

> -	status = gpiochip_add(&dm355evm_msp_gpio);

> +	status = gpiochip_add_data(&dm355evm_msp_gpio, NULL);

>  	if (status < 0)

>  		return status;

>  


-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/mfd/dm355evm_msp.c b/drivers/mfd/dm355evm_msp.c
index bc90efe01b59..d2c9a0dda531 100644
--- a/drivers/mfd/dm355evm_msp.c
+++ b/drivers/mfd/dm355evm_msp.c
@@ -260,7 +260,7 @@  static int add_children(struct i2c_client *client)
 
 	/* GPIO-ish stuff */
 	dm355evm_msp_gpio.parent = &client->dev;
-	status = gpiochip_add(&dm355evm_msp_gpio);
+	status = gpiochip_add_data(&dm355evm_msp_gpio, NULL);
 	if (status < 0)
 		return status;