The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Felipe Balbi <balbi@ti.com>
To: Chanwoo Choi <cw00.choi@samsung.com>
Cc: <linux-kernel@vger.kernel.org>, <myungjoo.ham@samsung.com>,
	<balbi@ti.com>, <gg@slimlogic.co.uk>, <kishon@ti.com>,
	<ckeepax@opensource.wolfsonmicro.com>, <broonie@kernel.org>,
	<k.kozlowski@samsung.com>, <kyungmin.park@samsung.com>
Subject: Re: [PATCHv4 8/9] extcon: gpio: Use devm_extcon_dev_allocate for extcon_dev
Date: Fri, 25 Apr 2014 10:18:11 -0500	[thread overview]
Message-ID: <20140425151811.GL29632@saruman.home> (raw)
In-Reply-To: <1398386544-16295-9-git-send-email-cw00.choi@samsung.com>

[-- Attachment #1: Type: text/plain, Size: 3032 bytes --]

On Fri, Apr 25, 2014 at 09:42:23AM +0900, Chanwoo Choi wrote:
> This patch use devm_extcon_dev_allocate() to simplify the memory control
> of extcon device.
> 
> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>

Reviewed-by: Felipe Balbi <balbi@ti.com>

> ---
>  drivers/extcon/extcon-gpio.c | 23 +++++++++++++++--------
>  1 file changed, 15 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/extcon/extcon-gpio.c b/drivers/extcon/extcon-gpio.c
> index 43af34c..645b283 100644
> --- a/drivers/extcon/extcon-gpio.c
> +++ b/drivers/extcon/extcon-gpio.c
> @@ -32,7 +32,7 @@
>  #include <linux/extcon/extcon-gpio.h>
>  
>  struct gpio_extcon_data {
> -	struct extcon_dev edev;
> +	struct extcon_dev *edev;
>  	unsigned gpio;
>  	bool gpio_active_low;
>  	const char *state_on;
> @@ -53,7 +53,7 @@ static void gpio_extcon_work(struct work_struct *work)
>  	state = gpio_get_value(data->gpio);
>  	if (data->gpio_active_low)
>  		state = !state;
> -	extcon_set_state(&data->edev, state);
> +	extcon_set_state(data->edev, state);
>  }
>  
>  static irqreturn_t gpio_irq_handler(int irq, void *dev_id)
> @@ -67,9 +67,10 @@ static irqreturn_t gpio_irq_handler(int irq, void *dev_id)
>  
>  static ssize_t extcon_gpio_print_state(struct extcon_dev *edev, char *buf)
>  {
> -	struct gpio_extcon_data	*extcon_data =
> -		container_of(edev, struct gpio_extcon_data, edev);
> +	struct device *dev = edev->dev.parent;
> +	struct gpio_extcon_data *extcon_data = dev_get_drvdata(dev);
>  	const char *state;
> +
>  	if (extcon_get_state(edev))
>  		state = extcon_data->state_on;
>  	else
> @@ -98,15 +99,21 @@ static int gpio_extcon_probe(struct platform_device *pdev)
>  	if (!extcon_data)
>  		return -ENOMEM;
>  
> -	extcon_data->edev.name = pdata->name;
> -	extcon_data->edev.dev.parent = &pdev->dev;
> +	extcon_data->edev = devm_extcon_dev_allocate(&pdev->dev, NULL);
> +	if (IS_ERR(extcon_data->edev)) {
> +		dev_err(&pdev->dev, "failed to allocate extcon device\n");
> +		return -ENOMEM;
> +	}
> +	extcon_data->edev->name = pdata->name;
> +	extcon_data->edev->dev.parent = &pdev->dev;
> +
>  	extcon_data->gpio = pdata->gpio;
>  	extcon_data->gpio_active_low = pdata->gpio_active_low;
>  	extcon_data->state_on = pdata->state_on;
>  	extcon_data->state_off = pdata->state_off;
>  	extcon_data->check_on_resume = pdata->check_on_resume;
>  	if (pdata->state_on && pdata->state_off)
> -		extcon_data->edev.print_state = extcon_gpio_print_state;
> +		extcon_data->edev->print_state = extcon_gpio_print_state;
>  
>  	ret = devm_gpio_request_one(&pdev->dev, extcon_data->gpio, GPIOF_DIR_IN,
>  				    pdev->name);
> @@ -121,7 +128,7 @@ static int gpio_extcon_probe(struct platform_device *pdev)
>  				msecs_to_jiffies(pdata->debounce);
>  	}
>  
> -	ret = devm_extcon_dev_register(&pdev->dev, &extcon_data->edev);
> +	ret = devm_extcon_dev_register(&pdev->dev, extcon_data->edev);
>  	if (ret < 0)
>  		return ret;
>  
> -- 
> 1.8.0
> 

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

  reply	other threads:[~2014-04-25 15:18 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-25  0:42 [PATCHv4 0/9] extcon: Support devm_extcon_dev_allocate/free() Chanwoo Choi
2014-04-25  0:42 ` [PATCHv4 1/9] extcon: Add extcon_dev_allocate/free() to control the memory of extcon device Chanwoo Choi
2014-04-25 15:12   ` Felipe Balbi
2014-04-25  0:42 ` [PATCHv4 2/9] extcon: Add devm_extcon_dev_allocate/free to manage the resource " Chanwoo Choi
2014-04-25 15:14   ` Felipe Balbi
2014-04-25  0:42 ` [PATCHv4 3/9] extcon: max8997: Use devm_extcon_dev_allocate for extcon_dev Chanwoo Choi
2014-04-25 15:14   ` Felipe Balbi
2014-04-25  0:42 ` [PATCHv4 4/9] extcon: max77693: " Chanwoo Choi
2014-04-25 15:15   ` Felipe Balbi
2014-04-25  0:42 ` [PATCHv4 5/9] extcon: max14577: " Chanwoo Choi
2014-04-25 15:16   ` Felipe Balbi
2014-04-25  0:42 ` [PATCHv4 6/9] extcon: arizona: " Chanwoo Choi
2014-04-25 15:16   ` Felipe Balbi
2014-04-25  0:42 ` [PATCHv4 7/9] extcon: adc-jack: " Chanwoo Choi
2014-04-25 15:17   ` Felipe Balbi
2014-04-25  0:42 ` [PATCHv4 8/9] extcon: gpio: " Chanwoo Choi
2014-04-25 15:18   ` Felipe Balbi [this message]
2014-04-25  0:42 ` [PATCHv4 9/9] extcon: palmas: " Chanwoo Choi
2014-04-28 10:24   ` Lee Jones

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140425151811.GL29632@saruman.home \
    --to=balbi@ti.com \
    --cc=broonie@kernel.org \
    --cc=ckeepax@opensource.wolfsonmicro.com \
    --cc=cw00.choi@samsung.com \
    --cc=gg@slimlogic.co.uk \
    --cc=k.kozlowski@samsung.com \
    --cc=kishon@ti.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=myungjoo.ham@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox