All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 1/1] mmc: sdhci-pci: Convert to use managed functions pcim_* and devm_*
@ 2016-07-09 13:41 Andy Shevchenko
  2016-07-21 10:41 ` Adrian Hunter
  2016-07-23  9:37 ` Ulf Hansson
  0 siblings, 2 replies; 3+ messages in thread
From: Andy Shevchenko @ 2016-07-09 13:41 UTC (permalink / raw)
  To: Adrian Hunter, linux-mmc, Ulf Hansson; +Cc: Andy Shevchenko

This makes the error handling much more simpler than open-coding everything
and in addition makes the probe function smaller an tidier.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/mmc/host/sdhci-pci-core.c | 42 ++++++++++-----------------------------
 1 file changed, 11 insertions(+), 31 deletions(-)

diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
index 6fbf708..773532d 100644
--- a/drivers/mmc/host/sdhci-pci-core.c
+++ b/drivers/mmc/host/sdhci-pci-core.c
@@ -1819,15 +1819,13 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
 		return -ENODEV;
 	}
 
-	ret = pci_enable_device(pdev);
+	ret = pcim_enable_device(pdev);
 	if (ret)
 		return ret;
 
-	chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
-	if (!chip) {
-		ret = -ENOMEM;
-		goto err;
-	}
+	chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
+	if (!chip)
+		return -ENOMEM;
 
 	chip->pdev = pdev;
 	chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
@@ -1843,7 +1841,7 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
 	if (chip->fixes && chip->fixes->probe) {
 		ret = chip->fixes->probe(chip);
 		if (ret)
-			goto free;
+			return ret;
 	}
 
 	slots = chip->num_slots;	/* Quirk may have changed this */
@@ -1853,8 +1851,7 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
 		if (IS_ERR(slot)) {
 			for (i--; i >= 0; i--)
 				sdhci_pci_remove_slot(chip->slots[i]);
-			ret = PTR_ERR(slot);
-			goto free;
+			return PTR_ERR(slot);
 		}
 
 		chip->slots[i] = slot;
@@ -1864,35 +1861,18 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
 		sdhci_pci_runtime_pm_allow(&pdev->dev);
 
 	return 0;
-
-free:
-	pci_set_drvdata(pdev, NULL);
-	kfree(chip);
-
-err:
-	pci_disable_device(pdev);
-	return ret;
 }
 
 static void sdhci_pci_remove(struct pci_dev *pdev)
 {
 	int i;
-	struct sdhci_pci_chip *chip;
-
-	chip = pci_get_drvdata(pdev);
-
-	if (chip) {
-		if (chip->allow_runtime_pm)
-			sdhci_pci_runtime_pm_forbid(&pdev->dev);
+	struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
 
-		for (i = 0; i < chip->num_slots; i++)
-			sdhci_pci_remove_slot(chip->slots[i]);
-
-		pci_set_drvdata(pdev, NULL);
-		kfree(chip);
-	}
+	if (chip->allow_runtime_pm)
+		sdhci_pci_runtime_pm_forbid(&pdev->dev);
 
-	pci_disable_device(pdev);
+	for (i = 0; i < chip->num_slots; i++)
+		sdhci_pci_remove_slot(chip->slots[i]);
 }
 
 static struct pci_driver sdhci_driver = {
-- 
2.8.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v1 1/1] mmc: sdhci-pci: Convert to use managed functions pcim_* and devm_*
  2016-07-09 13:41 [PATCH v1 1/1] mmc: sdhci-pci: Convert to use managed functions pcim_* and devm_* Andy Shevchenko
@ 2016-07-21 10:41 ` Adrian Hunter
  2016-07-23  9:37 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Adrian Hunter @ 2016-07-21 10:41 UTC (permalink / raw)
  To: Andy Shevchenko, linux-mmc, Ulf Hansson

On 09/07/16 16:41, Andy Shevchenko wrote:
> This makes the error handling much more simpler than open-coding everything
> and in addition makes the probe function smaller an tidier.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>


Acked-by: Adrian Hunter <adrian.hunter@intel.com>


> ---
>  drivers/mmc/host/sdhci-pci-core.c | 42 ++++++++++-----------------------------
>  1 file changed, 11 insertions(+), 31 deletions(-)
> 
> diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
> index 6fbf708..773532d 100644
> --- a/drivers/mmc/host/sdhci-pci-core.c
> +++ b/drivers/mmc/host/sdhci-pci-core.c
> @@ -1819,15 +1819,13 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
>  		return -ENODEV;
>  	}
>  
> -	ret = pci_enable_device(pdev);
> +	ret = pcim_enable_device(pdev);
>  	if (ret)
>  		return ret;
>  
> -	chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
> -	if (!chip) {
> -		ret = -ENOMEM;
> -		goto err;
> -	}
> +	chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
> +	if (!chip)
> +		return -ENOMEM;
>  
>  	chip->pdev = pdev;
>  	chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
> @@ -1843,7 +1841,7 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
>  	if (chip->fixes && chip->fixes->probe) {
>  		ret = chip->fixes->probe(chip);
>  		if (ret)
> -			goto free;
> +			return ret;
>  	}
>  
>  	slots = chip->num_slots;	/* Quirk may have changed this */
> @@ -1853,8 +1851,7 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
>  		if (IS_ERR(slot)) {
>  			for (i--; i >= 0; i--)
>  				sdhci_pci_remove_slot(chip->slots[i]);
> -			ret = PTR_ERR(slot);
> -			goto free;
> +			return PTR_ERR(slot);
>  		}
>  
>  		chip->slots[i] = slot;
> @@ -1864,35 +1861,18 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
>  		sdhci_pci_runtime_pm_allow(&pdev->dev);
>  
>  	return 0;
> -
> -free:
> -	pci_set_drvdata(pdev, NULL);
> -	kfree(chip);
> -
> -err:
> -	pci_disable_device(pdev);
> -	return ret;
>  }
>  
>  static void sdhci_pci_remove(struct pci_dev *pdev)
>  {
>  	int i;
> -	struct sdhci_pci_chip *chip;
> -
> -	chip = pci_get_drvdata(pdev);
> -
> -	if (chip) {
> -		if (chip->allow_runtime_pm)
> -			sdhci_pci_runtime_pm_forbid(&pdev->dev);
> +	struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
>  
> -		for (i = 0; i < chip->num_slots; i++)
> -			sdhci_pci_remove_slot(chip->slots[i]);
> -
> -		pci_set_drvdata(pdev, NULL);
> -		kfree(chip);
> -	}
> +	if (chip->allow_runtime_pm)
> +		sdhci_pci_runtime_pm_forbid(&pdev->dev);
>  
> -	pci_disable_device(pdev);
> +	for (i = 0; i < chip->num_slots; i++)
> +		sdhci_pci_remove_slot(chip->slots[i]);
>  }
>  
>  static struct pci_driver sdhci_driver = {
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v1 1/1] mmc: sdhci-pci: Convert to use managed functions pcim_* and devm_*
  2016-07-09 13:41 [PATCH v1 1/1] mmc: sdhci-pci: Convert to use managed functions pcim_* and devm_* Andy Shevchenko
  2016-07-21 10:41 ` Adrian Hunter
@ 2016-07-23  9:37 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2016-07-23  9:37 UTC (permalink / raw)
  To: Andy Shevchenko; +Cc: Adrian Hunter, linux-mmc

On 9 July 2016 at 15:41, Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
> This makes the error handling much more simpler than open-coding everything
> and in addition makes the probe function smaller an tidier.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Thanks, applied for next!

Kind regards
Uffe

> ---
>  drivers/mmc/host/sdhci-pci-core.c | 42 ++++++++++-----------------------------
>  1 file changed, 11 insertions(+), 31 deletions(-)
>
> diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
> index 6fbf708..773532d 100644
> --- a/drivers/mmc/host/sdhci-pci-core.c
> +++ b/drivers/mmc/host/sdhci-pci-core.c
> @@ -1819,15 +1819,13 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
>                 return -ENODEV;
>         }
>
> -       ret = pci_enable_device(pdev);
> +       ret = pcim_enable_device(pdev);
>         if (ret)
>                 return ret;
>
> -       chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
> -       if (!chip) {
> -               ret = -ENOMEM;
> -               goto err;
> -       }
> +       chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
> +       if (!chip)
> +               return -ENOMEM;
>
>         chip->pdev = pdev;
>         chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
> @@ -1843,7 +1841,7 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
>         if (chip->fixes && chip->fixes->probe) {
>                 ret = chip->fixes->probe(chip);
>                 if (ret)
> -                       goto free;
> +                       return ret;
>         }
>
>         slots = chip->num_slots;        /* Quirk may have changed this */
> @@ -1853,8 +1851,7 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
>                 if (IS_ERR(slot)) {
>                         for (i--; i >= 0; i--)
>                                 sdhci_pci_remove_slot(chip->slots[i]);
> -                       ret = PTR_ERR(slot);
> -                       goto free;
> +                       return PTR_ERR(slot);
>                 }
>
>                 chip->slots[i] = slot;
> @@ -1864,35 +1861,18 @@ static int sdhci_pci_probe(struct pci_dev *pdev,
>                 sdhci_pci_runtime_pm_allow(&pdev->dev);
>
>         return 0;
> -
> -free:
> -       pci_set_drvdata(pdev, NULL);
> -       kfree(chip);
> -
> -err:
> -       pci_disable_device(pdev);
> -       return ret;
>  }
>
>  static void sdhci_pci_remove(struct pci_dev *pdev)
>  {
>         int i;
> -       struct sdhci_pci_chip *chip;
> -
> -       chip = pci_get_drvdata(pdev);
> -
> -       if (chip) {
> -               if (chip->allow_runtime_pm)
> -                       sdhci_pci_runtime_pm_forbid(&pdev->dev);
> +       struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
>
> -               for (i = 0; i < chip->num_slots; i++)
> -                       sdhci_pci_remove_slot(chip->slots[i]);
> -
> -               pci_set_drvdata(pdev, NULL);
> -               kfree(chip);
> -       }
> +       if (chip->allow_runtime_pm)
> +               sdhci_pci_runtime_pm_forbid(&pdev->dev);
>
> -       pci_disable_device(pdev);
> +       for (i = 0; i < chip->num_slots; i++)
> +               sdhci_pci_remove_slot(chip->slots[i]);
>  }
>
>  static struct pci_driver sdhci_driver = {
> --
> 2.8.1
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-07-23  9:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-09 13:41 [PATCH v1 1/1] mmc: sdhci-pci: Convert to use managed functions pcim_* and devm_* Andy Shevchenko
2016-07-21 10:41 ` Adrian Hunter
2016-07-23  9:37 ` Ulf Hansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.