All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] mmc: remove unused struct component card_detect_irq
@ 2020-12-23  9:01 H. Nikolaus Schaller
  2020-12-23  9:01 ` [PATCH 1/2] mmc: jz4740: " H. Nikolaus Schaller
  2020-12-23  9:01 ` [PATCH 2/2] mmc: omap: " H. Nikolaus Schaller
  0 siblings, 2 replies; 6+ messages in thread
From: H. Nikolaus Schaller @ 2020-12-23  9:01 UTC (permalink / raw)
  To: Paul Cercueil, Ulf Hansson, Lee Jones, Tony Lindgren,
	H. Nikolaus Schaller
  Cc: linux-mmc, linux-kernel, letux-kernel

card_detect_irq is not used anymore since v4.1.
Remove it.

H. Nikolaus Schaller (2):
  mmc: jz4740: remove unused struct component card_detect_irq
  mmc: omap: remove unused struct component card_detect_irq

 drivers/mmc/host/jz4740_mmc.c          | 1 -
 include/linux/platform_data/mmc-omap.h | 3 +--
 2 files changed, 1 insertion(+), 3 deletions(-)

-- 
2.26.2


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

* [PATCH 1/2] mmc: jz4740: remove unused struct component card_detect_irq
  2020-12-23  9:01 [PATCH 0/2] mmc: remove unused struct component card_detect_irq H. Nikolaus Schaller
@ 2020-12-23  9:01 ` H. Nikolaus Schaller
  2020-12-23 12:51   ` Paul Cercueil
  2021-01-13 11:25   ` Ulf Hansson
  2020-12-23  9:01 ` [PATCH 2/2] mmc: omap: " H. Nikolaus Schaller
  1 sibling, 2 replies; 6+ messages in thread
From: H. Nikolaus Schaller @ 2020-12-23  9:01 UTC (permalink / raw)
  To: Paul Cercueil, Ulf Hansson, Lee Jones, Tony Lindgren,
	H. Nikolaus Schaller
  Cc: linux-mmc, linux-kernel, letux-kernel

I have not found any user for this struct component.

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 drivers/mmc/host/jz4740_mmc.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/mmc/host/jz4740_mmc.c b/drivers/mmc/host/jz4740_mmc.c
index a1f92fed2a55b7..b3c636edbb4610 100644
--- a/drivers/mmc/host/jz4740_mmc.c
+++ b/drivers/mmc/host/jz4740_mmc.c
@@ -152,7 +152,6 @@ struct jz4740_mmc_host {
 	enum jz4740_mmc_version version;
 
 	int irq;
-	int card_detect_irq;
 
 	void __iomem *base;
 	struct resource *mem_res;
-- 
2.26.2


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

* [PATCH 2/2] mmc: omap: remove unused struct component card_detect_irq
  2020-12-23  9:01 [PATCH 0/2] mmc: remove unused struct component card_detect_irq H. Nikolaus Schaller
  2020-12-23  9:01 ` [PATCH 1/2] mmc: jz4740: " H. Nikolaus Schaller
@ 2020-12-23  9:01 ` H. Nikolaus Schaller
  2021-01-13 11:25   ` Ulf Hansson
  1 sibling, 1 reply; 6+ messages in thread
From: H. Nikolaus Schaller @ 2020-12-23  9:01 UTC (permalink / raw)
  To: Paul Cercueil, Ulf Hansson, Lee Jones, Tony Lindgren,
	H. Nikolaus Schaller
  Cc: linux-mmc, linux-kernel, letux-kernel

I have not found any user for this struct component.

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 include/linux/platform_data/mmc-omap.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/include/linux/platform_data/mmc-omap.h b/include/linux/platform_data/mmc-omap.h
index f0b8947e6b07d8..91051e9907f34e 100644
--- a/include/linux/platform_data/mmc-omap.h
+++ b/include/linux/platform_data/mmc-omap.h
@@ -108,8 +108,7 @@ struct omap_mmc_platform_data {
 		const char *name;
 		u32 ocr_mask;
 
-		/* Card detection IRQs */
-		int card_detect_irq;
+		/* Card detection */
 		int (*card_detect)(struct device *dev, int slot);
 
 		unsigned int ban_openended:1;
-- 
2.26.2


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

* Re: [PATCH 1/2] mmc: jz4740: remove unused struct component card_detect_irq
  2020-12-23  9:01 ` [PATCH 1/2] mmc: jz4740: " H. Nikolaus Schaller
@ 2020-12-23 12:51   ` Paul Cercueil
  2021-01-13 11:25   ` Ulf Hansson
  1 sibling, 0 replies; 6+ messages in thread
From: Paul Cercueil @ 2020-12-23 12:51 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Ulf Hansson, Lee Jones, Tony Lindgren, linux-mmc, linux-kernel,
	letux-kernel

Hi,

Le mer. 23 déc. 2020 à 10:01, H. Nikolaus Schaller 
<hns@goldelico.com> a écrit :
> I have not found any user for this struct component.
> 
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>

Reviewed-by: Paul Cercueil <paul@crapouillou.net>

Cheers,
-Paul

> ---
>  drivers/mmc/host/jz4740_mmc.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/mmc/host/jz4740_mmc.c 
> b/drivers/mmc/host/jz4740_mmc.c
> index a1f92fed2a55b7..b3c636edbb4610 100644
> --- a/drivers/mmc/host/jz4740_mmc.c
> +++ b/drivers/mmc/host/jz4740_mmc.c
> @@ -152,7 +152,6 @@ struct jz4740_mmc_host {
>  	enum jz4740_mmc_version version;
> 
>  	int irq;
> -	int card_detect_irq;
> 
>  	void __iomem *base;
>  	struct resource *mem_res;
> --
> 2.26.2
> 



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

* Re: [PATCH 1/2] mmc: jz4740: remove unused struct component card_detect_irq
  2020-12-23  9:01 ` [PATCH 1/2] mmc: jz4740: " H. Nikolaus Schaller
  2020-12-23 12:51   ` Paul Cercueil
@ 2021-01-13 11:25   ` Ulf Hansson
  1 sibling, 0 replies; 6+ messages in thread
From: Ulf Hansson @ 2021-01-13 11:25 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Paul Cercueil, Lee Jones, Tony Lindgren, linux-mmc,
	Linux Kernel Mailing List, Discussions about the Letux Kernel

On Wed, 23 Dec 2020 at 10:05, H. Nikolaus Schaller <hns@goldelico.com> wrote:
>
> I have not found any user for this struct component.
>
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>

Applied for next, thanks!

Kind regards
Uffe


> ---
>  drivers/mmc/host/jz4740_mmc.c | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/drivers/mmc/host/jz4740_mmc.c b/drivers/mmc/host/jz4740_mmc.c
> index a1f92fed2a55b7..b3c636edbb4610 100644
> --- a/drivers/mmc/host/jz4740_mmc.c
> +++ b/drivers/mmc/host/jz4740_mmc.c
> @@ -152,7 +152,6 @@ struct jz4740_mmc_host {
>         enum jz4740_mmc_version version;
>
>         int irq;
> -       int card_detect_irq;
>
>         void __iomem *base;
>         struct resource *mem_res;
> --
> 2.26.2
>

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

* Re: [PATCH 2/2] mmc: omap: remove unused struct component card_detect_irq
  2020-12-23  9:01 ` [PATCH 2/2] mmc: omap: " H. Nikolaus Schaller
@ 2021-01-13 11:25   ` Ulf Hansson
  0 siblings, 0 replies; 6+ messages in thread
From: Ulf Hansson @ 2021-01-13 11:25 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Paul Cercueil, Lee Jones, Tony Lindgren, linux-mmc,
	Linux Kernel Mailing List, Discussions about the Letux Kernel

On Wed, 23 Dec 2020 at 10:05, H. Nikolaus Schaller <hns@goldelico.com> wrote:
>
> I have not found any user for this struct component.
>
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>

Applied for next, thanks!

Kind regards
Uffe


> ---
>  include/linux/platform_data/mmc-omap.h | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/include/linux/platform_data/mmc-omap.h b/include/linux/platform_data/mmc-omap.h
> index f0b8947e6b07d8..91051e9907f34e 100644
> --- a/include/linux/platform_data/mmc-omap.h
> +++ b/include/linux/platform_data/mmc-omap.h
> @@ -108,8 +108,7 @@ struct omap_mmc_platform_data {
>                 const char *name;
>                 u32 ocr_mask;
>
> -               /* Card detection IRQs */
> -               int card_detect_irq;
> +               /* Card detection */
>                 int (*card_detect)(struct device *dev, int slot);
>
>                 unsigned int ban_openended:1;
> --
> 2.26.2
>

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

end of thread, other threads:[~2021-01-13 11:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-23  9:01 [PATCH 0/2] mmc: remove unused struct component card_detect_irq H. Nikolaus Schaller
2020-12-23  9:01 ` [PATCH 1/2] mmc: jz4740: " H. Nikolaus Schaller
2020-12-23 12:51   ` Paul Cercueil
2021-01-13 11:25   ` Ulf Hansson
2020-12-23  9:01 ` [PATCH 2/2] mmc: omap: " H. Nikolaus Schaller
2021-01-13 11:25   ` 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.