linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data
@ 2021-04-15  8:44 Krzysztof Kozlowski
  2021-04-15  8:44 ` [PATCH v2 2/3] mmc: sdhci-s3c: correct kerneldoc of sdhci_s3c_drv_data Krzysztof Kozlowski
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Krzysztof Kozlowski @ 2021-04-15  8:44 UTC (permalink / raw)
  To: Ben Dooks, Jaehoon Chung, Adrian Hunter, Ulf Hansson, linux-mmc,
	linux-kernel
  Cc: Sylwester Nawrocki, Marek Szyprowski, Krzysztof Kozlowski

Use of_device_get_match_data() to make the code slightly smaller and to
remove the of_device_id table forward declaration.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

---

Changes since v1:
1. Rewrite the commit msg as it is not a NULL pointer dereference.
---
 drivers/mmc/host/sdhci-s3c.c | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c
index f48a788a9d3d..8e1dca625620 100644
--- a/drivers/mmc/host/sdhci-s3c.c
+++ b/drivers/mmc/host/sdhci-s3c.c
@@ -20,6 +20,7 @@
 #include <linux/gpio.h>
 #include <linux/module.h>
 #include <linux/of.h>
+#include <linux/of_device.h>
 #include <linux/of_gpio.h>
 #include <linux/pm.h>
 #include <linux/pm_runtime.h>
@@ -461,19 +462,12 @@ static int sdhci_s3c_parse_dt(struct device *dev,
 }
 #endif
 
-#ifdef CONFIG_OF
-static const struct of_device_id sdhci_s3c_dt_match[];
-#endif
-
 static inline struct sdhci_s3c_drv_data *sdhci_s3c_get_driver_data(
 			struct platform_device *pdev)
 {
 #ifdef CONFIG_OF
-	if (pdev->dev.of_node) {
-		const struct of_device_id *match;
-		match = of_match_node(sdhci_s3c_dt_match, pdev->dev.of_node);
-		return (struct sdhci_s3c_drv_data *)match->data;
-	}
+	if (pdev->dev.of_node)
+		return (struct sdhci_s3c_drv_data *)of_device_get_match_data(&pdev->dev);
 #endif
 	return (struct sdhci_s3c_drv_data *)
 			platform_get_device_id(pdev)->driver_data;
-- 
2.25.1


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

* [PATCH v2 2/3] mmc: sdhci-s3c: correct kerneldoc of sdhci_s3c_drv_data
  2021-04-15  8:44 [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data Krzysztof Kozlowski
@ 2021-04-15  8:44 ` Krzysztof Kozlowski
  2021-04-15  9:57   ` Sylwester Nawrocki
  2021-04-15 12:02   ` Ulf Hansson
  2021-04-15  8:44 ` [PATCH v2 3/3] mmc: sdhci-s3c: constify uses of driver/match data Krzysztof Kozlowski
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 9+ messages in thread
From: Krzysztof Kozlowski @ 2021-04-15  8:44 UTC (permalink / raw)
  To: Ben Dooks, Jaehoon Chung, Adrian Hunter, Ulf Hansson, linux-mmc,
	linux-kernel
  Cc: Sylwester Nawrocki, Marek Szyprowski, Krzysztof Kozlowski

Correct the name of sdhci_s3c_drv_data structure in kerneldoc:

  drivers/mmc/host/sdhci-s3c.c:143: warning:
    expecting prototype for struct sdhci_s3c_driver_data. Prototype was for struct sdhci_s3c_drv_data instead

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

---

Changes since v1:
1. None
---
 drivers/mmc/host/sdhci-s3c.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c
index 8e1dca625620..a07a8f011741 100644
--- a/drivers/mmc/host/sdhci-s3c.c
+++ b/drivers/mmc/host/sdhci-s3c.c
@@ -130,7 +130,7 @@ struct sdhci_s3c {
 };
 
 /**
- * struct sdhci_s3c_driver_data - S3C SDHCI platform specific driver data
+ * struct sdhci_s3c_drv_data - S3C SDHCI platform specific driver data
  * @sdhci_quirks: sdhci host specific quirks.
  * @no_divider: no or non-standard internal clock divider.
  *
-- 
2.25.1


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

* [PATCH v2 3/3] mmc: sdhci-s3c: constify uses of driver/match data
  2021-04-15  8:44 [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data Krzysztof Kozlowski
  2021-04-15  8:44 ` [PATCH v2 2/3] mmc: sdhci-s3c: correct kerneldoc of sdhci_s3c_drv_data Krzysztof Kozlowski
@ 2021-04-15  8:44 ` Krzysztof Kozlowski
  2021-04-15  9:42   ` Sylwester Nawrocki
  2021-04-15 12:02   ` Ulf Hansson
  2021-04-15  9:39 ` [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data Sylwester Nawrocki
  2021-04-15 12:02 ` Ulf Hansson
  3 siblings, 2 replies; 9+ messages in thread
From: Krzysztof Kozlowski @ 2021-04-15  8:44 UTC (permalink / raw)
  To: Ben Dooks, Jaehoon Chung, Adrian Hunter, Ulf Hansson, linux-mmc,
	linux-kernel
  Cc: Sylwester Nawrocki, Marek Szyprowski, Krzysztof Kozlowski

The driver data (struct sdhci_s3c_drv_data) stored in of_device_id
table is allocated as const and used only in const-way.  Skip
unnecessary const-away casts and convert all users to work with pointer
to const.  This is both more logical and safer.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

---

Changes since v1:
1. None
---
 drivers/mmc/host/sdhci-s3c.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c
index a07a8f011741..862f033d235d 100644
--- a/drivers/mmc/host/sdhci-s3c.c
+++ b/drivers/mmc/host/sdhci-s3c.c
@@ -462,21 +462,21 @@ static int sdhci_s3c_parse_dt(struct device *dev,
 }
 #endif
 
-static inline struct sdhci_s3c_drv_data *sdhci_s3c_get_driver_data(
+static inline const struct sdhci_s3c_drv_data *sdhci_s3c_get_driver_data(
 			struct platform_device *pdev)
 {
 #ifdef CONFIG_OF
 	if (pdev->dev.of_node)
-		return (struct sdhci_s3c_drv_data *)of_device_get_match_data(&pdev->dev);
+		return of_device_get_match_data(&pdev->dev);
 #endif
-	return (struct sdhci_s3c_drv_data *)
+	return (const struct sdhci_s3c_drv_data *)
 			platform_get_device_id(pdev)->driver_data;
 }
 
 static int sdhci_s3c_probe(struct platform_device *pdev)
 {
 	struct s3c_sdhci_platdata *pdata;
-	struct sdhci_s3c_drv_data *drv_data;
+	const struct sdhci_s3c_drv_data *drv_data;
 	struct device *dev = &pdev->dev;
 	struct sdhci_host *host;
 	struct sdhci_s3c *sc;
@@ -761,7 +761,7 @@ static const struct platform_device_id sdhci_s3c_driver_ids[] = {
 MODULE_DEVICE_TABLE(platform, sdhci_s3c_driver_ids);
 
 #ifdef CONFIG_OF
-static struct sdhci_s3c_drv_data exynos4_sdhci_drv_data = {
+static const struct sdhci_s3c_drv_data exynos4_sdhci_drv_data = {
 	.no_divider = true,
 };
 
-- 
2.25.1


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

* Re: [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data
  2021-04-15  8:44 [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data Krzysztof Kozlowski
  2021-04-15  8:44 ` [PATCH v2 2/3] mmc: sdhci-s3c: correct kerneldoc of sdhci_s3c_drv_data Krzysztof Kozlowski
  2021-04-15  8:44 ` [PATCH v2 3/3] mmc: sdhci-s3c: constify uses of driver/match data Krzysztof Kozlowski
@ 2021-04-15  9:39 ` Sylwester Nawrocki
  2021-04-15 12:02 ` Ulf Hansson
  3 siblings, 0 replies; 9+ messages in thread
From: Sylwester Nawrocki @ 2021-04-15  9:39 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Ben Dooks, Jaehoon Chung, Adrian Hunter,
	Ulf Hansson, linux-mmc, linux-kernel
  Cc: Marek Szyprowski


On 15.04.2021 10:44, Krzysztof Kozlowski wrote:
> Use of_device_get_match_data() to make the code slightly smaller and to
> remove the of_device_id table forward declaration.
> 
> Signed-off-by: Krzysztof Kozlowski<krzysztof.kozlowski@canonical.com>

Reviewed-by: Sylwester Nawrocki <snawrocki@kernel.org>

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

* Re: [PATCH v2 3/3] mmc: sdhci-s3c: constify uses of driver/match data
  2021-04-15  8:44 ` [PATCH v2 3/3] mmc: sdhci-s3c: constify uses of driver/match data Krzysztof Kozlowski
@ 2021-04-15  9:42   ` Sylwester Nawrocki
  2021-04-15 12:02   ` Ulf Hansson
  1 sibling, 0 replies; 9+ messages in thread
From: Sylwester Nawrocki @ 2021-04-15  9:42 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Ben Dooks, Jaehoon Chung, Adrian Hunter,
	Ulf Hansson, linux-mmc, linux-kernel
  Cc: Marek Szyprowski



On 15.04.2021 10:44, Krzysztof Kozlowski wrote:
> The driver data (struct sdhci_s3c_drv_data) stored in of_device_id
> table is allocated as const and used only in const-way.  Skip
> unnecessary const-away casts and convert all users to work with pointer
> to const.  This is both more logical and safer.
> 
> Signed-off-by: Krzysztof Kozlowski<krzysztof.kozlowski@canonical.com>

Reviewed-by: Sylwester Nawrocki <snawrocki@kernel.org>

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

* Re: [PATCH v2 2/3] mmc: sdhci-s3c: correct kerneldoc of sdhci_s3c_drv_data
  2021-04-15  8:44 ` [PATCH v2 2/3] mmc: sdhci-s3c: correct kerneldoc of sdhci_s3c_drv_data Krzysztof Kozlowski
@ 2021-04-15  9:57   ` Sylwester Nawrocki
  2021-04-15 12:02   ` Ulf Hansson
  1 sibling, 0 replies; 9+ messages in thread
From: Sylwester Nawrocki @ 2021-04-15  9:57 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Ben Dooks, Jaehoon Chung, Adrian Hunter,
	Ulf Hansson, linux-mmc, linux-kernel
  Cc: Marek Szyprowski


On 15.04.2021 10:44, Krzysztof Kozlowski wrote:
> Correct the name of sdhci_s3c_drv_data structure in kerneldoc:
> 
>    drivers/mmc/host/sdhci-s3c.c:143: warning:
>      expecting prototype for struct sdhci_s3c_driver_data. Prototype was for struct sdhci_s3c_drv_data instead
> 
> Signed-off-by: Krzysztof Kozlowski<krzysztof.kozlowski@canonical.com>

Reviewed-by: Sylwester Nawrocki <snawrocki@kernel.org>

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

* Re: [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data
  2021-04-15  8:44 [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2021-04-15  9:39 ` [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data Sylwester Nawrocki
@ 2021-04-15 12:02 ` Ulf Hansson
  3 siblings, 0 replies; 9+ messages in thread
From: Ulf Hansson @ 2021-04-15 12:02 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Ben Dooks, Jaehoon Chung, Adrian Hunter, linux-mmc,
	Linux Kernel Mailing List, Sylwester Nawrocki, Marek Szyprowski

On Thu, 15 Apr 2021 at 10:44, Krzysztof Kozlowski
<krzysztof.kozlowski@canonical.com> wrote:
>
> Use of_device_get_match_data() to make the code slightly smaller and to
> remove the of_device_id table forward declaration.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

Applied for next, thanks!

Kind regards
Uffe


>
> ---
>
> Changes since v1:
> 1. Rewrite the commit msg as it is not a NULL pointer dereference.
> ---
>  drivers/mmc/host/sdhci-s3c.c | 12 +++---------
>  1 file changed, 3 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c
> index f48a788a9d3d..8e1dca625620 100644
> --- a/drivers/mmc/host/sdhci-s3c.c
> +++ b/drivers/mmc/host/sdhci-s3c.c
> @@ -20,6 +20,7 @@
>  #include <linux/gpio.h>
>  #include <linux/module.h>
>  #include <linux/of.h>
> +#include <linux/of_device.h>
>  #include <linux/of_gpio.h>
>  #include <linux/pm.h>
>  #include <linux/pm_runtime.h>
> @@ -461,19 +462,12 @@ static int sdhci_s3c_parse_dt(struct device *dev,
>  }
>  #endif
>
> -#ifdef CONFIG_OF
> -static const struct of_device_id sdhci_s3c_dt_match[];
> -#endif
> -
>  static inline struct sdhci_s3c_drv_data *sdhci_s3c_get_driver_data(
>                         struct platform_device *pdev)
>  {
>  #ifdef CONFIG_OF
> -       if (pdev->dev.of_node) {
> -               const struct of_device_id *match;
> -               match = of_match_node(sdhci_s3c_dt_match, pdev->dev.of_node);
> -               return (struct sdhci_s3c_drv_data *)match->data;
> -       }
> +       if (pdev->dev.of_node)
> +               return (struct sdhci_s3c_drv_data *)of_device_get_match_data(&pdev->dev);
>  #endif
>         return (struct sdhci_s3c_drv_data *)
>                         platform_get_device_id(pdev)->driver_data;
> --
> 2.25.1
>

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

* Re: [PATCH v2 3/3] mmc: sdhci-s3c: constify uses of driver/match data
  2021-04-15  8:44 ` [PATCH v2 3/3] mmc: sdhci-s3c: constify uses of driver/match data Krzysztof Kozlowski
  2021-04-15  9:42   ` Sylwester Nawrocki
@ 2021-04-15 12:02   ` Ulf Hansson
  1 sibling, 0 replies; 9+ messages in thread
From: Ulf Hansson @ 2021-04-15 12:02 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Ben Dooks, Jaehoon Chung, Adrian Hunter, linux-mmc,
	Linux Kernel Mailing List, Sylwester Nawrocki, Marek Szyprowski

On Thu, 15 Apr 2021 at 10:44, Krzysztof Kozlowski
<krzysztof.kozlowski@canonical.com> wrote:
>
> The driver data (struct sdhci_s3c_drv_data) stored in of_device_id
> table is allocated as const and used only in const-way.  Skip
> unnecessary const-away casts and convert all users to work with pointer
> to const.  This is both more logical and safer.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
>

Applied for next, thanks!

Kind regards
Uffe


> ---
>
> Changes since v1:
> 1. None
> ---
>  drivers/mmc/host/sdhci-s3c.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c
> index a07a8f011741..862f033d235d 100644
> --- a/drivers/mmc/host/sdhci-s3c.c
> +++ b/drivers/mmc/host/sdhci-s3c.c
> @@ -462,21 +462,21 @@ static int sdhci_s3c_parse_dt(struct device *dev,
>  }
>  #endif
>
> -static inline struct sdhci_s3c_drv_data *sdhci_s3c_get_driver_data(
> +static inline const struct sdhci_s3c_drv_data *sdhci_s3c_get_driver_data(
>                         struct platform_device *pdev)
>  {
>  #ifdef CONFIG_OF
>         if (pdev->dev.of_node)
> -               return (struct sdhci_s3c_drv_data *)of_device_get_match_data(&pdev->dev);
> +               return of_device_get_match_data(&pdev->dev);
>  #endif
> -       return (struct sdhci_s3c_drv_data *)
> +       return (const struct sdhci_s3c_drv_data *)
>                         platform_get_device_id(pdev)->driver_data;
>  }
>
>  static int sdhci_s3c_probe(struct platform_device *pdev)
>  {
>         struct s3c_sdhci_platdata *pdata;
> -       struct sdhci_s3c_drv_data *drv_data;
> +       const struct sdhci_s3c_drv_data *drv_data;
>         struct device *dev = &pdev->dev;
>         struct sdhci_host *host;
>         struct sdhci_s3c *sc;
> @@ -761,7 +761,7 @@ static const struct platform_device_id sdhci_s3c_driver_ids[] = {
>  MODULE_DEVICE_TABLE(platform, sdhci_s3c_driver_ids);
>
>  #ifdef CONFIG_OF
> -static struct sdhci_s3c_drv_data exynos4_sdhci_drv_data = {
> +static const struct sdhci_s3c_drv_data exynos4_sdhci_drv_data = {
>         .no_divider = true,
>  };
>
> --
> 2.25.1
>

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

* Re: [PATCH v2 2/3] mmc: sdhci-s3c: correct kerneldoc of sdhci_s3c_drv_data
  2021-04-15  8:44 ` [PATCH v2 2/3] mmc: sdhci-s3c: correct kerneldoc of sdhci_s3c_drv_data Krzysztof Kozlowski
  2021-04-15  9:57   ` Sylwester Nawrocki
@ 2021-04-15 12:02   ` Ulf Hansson
  1 sibling, 0 replies; 9+ messages in thread
From: Ulf Hansson @ 2021-04-15 12:02 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Ben Dooks, Jaehoon Chung, Adrian Hunter, linux-mmc,
	Linux Kernel Mailing List, Sylwester Nawrocki, Marek Szyprowski

On Thu, 15 Apr 2021 at 10:44, Krzysztof Kozlowski
<krzysztof.kozlowski@canonical.com> wrote:
>
> Correct the name of sdhci_s3c_drv_data structure in kerneldoc:
>
>   drivers/mmc/host/sdhci-s3c.c:143: warning:
>     expecting prototype for struct sdhci_s3c_driver_data. Prototype was for struct sdhci_s3c_drv_data instead
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
>

Applied for next, thanks!

Kind regards
Uffe


> ---
>
> Changes since v1:
> 1. None
> ---
>  drivers/mmc/host/sdhci-s3c.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c
> index 8e1dca625620..a07a8f011741 100644
> --- a/drivers/mmc/host/sdhci-s3c.c
> +++ b/drivers/mmc/host/sdhci-s3c.c
> @@ -130,7 +130,7 @@ struct sdhci_s3c {
>  };
>
>  /**
> - * struct sdhci_s3c_driver_data - S3C SDHCI platform specific driver data
> + * struct sdhci_s3c_drv_data - S3C SDHCI platform specific driver data
>   * @sdhci_quirks: sdhci host specific quirks.
>   * @no_divider: no or non-standard internal clock divider.
>   *
> --
> 2.25.1
>

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

end of thread, other threads:[~2021-04-15 12:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-15  8:44 [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data Krzysztof Kozlowski
2021-04-15  8:44 ` [PATCH v2 2/3] mmc: sdhci-s3c: correct kerneldoc of sdhci_s3c_drv_data Krzysztof Kozlowski
2021-04-15  9:57   ` Sylwester Nawrocki
2021-04-15 12:02   ` Ulf Hansson
2021-04-15  8:44 ` [PATCH v2 3/3] mmc: sdhci-s3c: constify uses of driver/match data Krzysztof Kozlowski
2021-04-15  9:42   ` Sylwester Nawrocki
2021-04-15 12:02   ` Ulf Hansson
2021-04-15  9:39 ` [PATCH v2 1/3] mmc: sdhci-s3c: simplify getting of_device_id match data Sylwester Nawrocki
2021-04-15 12:02 ` Ulf Hansson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).