All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ulf Hansson <ulf.hansson@linaro.org>
To: Sudeep Holla <sudeep.holla@arm.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	Adrian Hunter <adrian.hunter@intel.com>,
	linux-mmc <linux-mmc@vger.kernel.org>
Subject: Re: [PATCH 05/19] mmc: core/host: enable support for the standard "wakeup-source" property
Date: Thu, 19 Nov 2015 12:32:45 +0100	[thread overview]
Message-ID: <CAPDyKFrB7-SsBt_C9hvgwY-NHL-S8pvXmKc70f2Z_G2RoEpk9Q@mail.gmail.com> (raw)
In-Reply-To: <1445422216-29375-6-git-send-email-sudeep.holla@arm.com>

On 21 October 2015 at 12:10, Sudeep Holla <sudeep.holla@arm.com> wrote:
> Though the mmc core driver should/will continue to support the legacy
> "enable-sdio-wakeup" property to enable SDIO as the wakeup source, we
> need to add support for the new standard property "wakeup-source".
>
> This patch adds support for "wakeup-source" property in addition to the
> existing "enable-sdio-wakeup" property.
>
> Cc: Ulf Hansson <ulf.hansson@linaro.org>
> Cc: Adrian Hunter <adrian.hunter@intel.com>
> Cc: linux-mmc@vger.kernel.org
> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>

Thanks, applied for next!

Kind regards
Uffe

> ---
>  drivers/mmc/core/host.c        | 3 ++-
>  drivers/mmc/host/sdhci-pltfm.c | 3 ++-
>  2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mmc/core/host.c b/drivers/mmc/core/host.c
> index 5466f25f0281..85222bb56c73 100644
> --- a/drivers/mmc/core/host.c
> +++ b/drivers/mmc/core/host.c
> @@ -513,7 +513,8 @@ int mmc_of_parse(struct mmc_host *host)
>                 host->caps2 |= MMC_CAP2_FULL_PWR_CYCLE;
>         if (of_property_read_bool(np, "keep-power-in-suspend"))
>                 host->pm_caps |= MMC_PM_KEEP_POWER;
> -       if (of_property_read_bool(np, "enable-sdio-wakeup"))
> +       if (of_property_read_bool(np, "wakeup-source") ||
> +           of_property_read_bool(np, "enable-sdio-wakeup")) /* legacy */
>                 host->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
>         if (of_property_read_bool(np, "mmc-ddr-1_8v"))
>                 host->caps |= MMC_CAP_1_8V_DDR;
> diff --git a/drivers/mmc/host/sdhci-pltfm.c b/drivers/mmc/host/sdhci-pltfm.c
> index a207f5aaf62f..f00374bdafc9 100644
> --- a/drivers/mmc/host/sdhci-pltfm.c
> +++ b/drivers/mmc/host/sdhci-pltfm.c
> @@ -108,7 +108,8 @@ void sdhci_get_of_property(struct platform_device *pdev)
>         if (of_find_property(np, "keep-power-in-suspend", NULL))
>                 host->mmc->pm_caps |= MMC_PM_KEEP_POWER;
>
> -       if (of_find_property(np, "enable-sdio-wakeup", NULL))
> +       if (of_property_read_bool(np, "wakeup-source") ||
> +           of_property_read_bool(np, "enable-sdio-wakeup")) /* legacy */
>                 host->mmc->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
>  }
>  #else
> --
> 1.9.1
>

WARNING: multiple messages have this Message-ID (diff)
From: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
To: Sudeep Holla <sudeep.holla-5wv7dgnIgG8@public.gmane.org>
Cc: "linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	"linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org"
	<linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>,
	"devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Adrian Hunter
	<adrian.hunter-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
	linux-mmc <linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH 05/19] mmc: core/host: enable support for the standard "wakeup-source" property
Date: Thu, 19 Nov 2015 12:32:45 +0100	[thread overview]
Message-ID: <CAPDyKFrB7-SsBt_C9hvgwY-NHL-S8pvXmKc70f2Z_G2RoEpk9Q@mail.gmail.com> (raw)
In-Reply-To: <1445422216-29375-6-git-send-email-sudeep.holla-5wv7dgnIgG8@public.gmane.org>

On 21 October 2015 at 12:10, Sudeep Holla <sudeep.holla-5wv7dgnIgG8@public.gmane.org> wrote:
> Though the mmc core driver should/will continue to support the legacy
> "enable-sdio-wakeup" property to enable SDIO as the wakeup source, we
> need to add support for the new standard property "wakeup-source".
>
> This patch adds support for "wakeup-source" property in addition to the
> existing "enable-sdio-wakeup" property.
>
> Cc: Ulf Hansson <ulf.hansson-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> Cc: Adrian Hunter <adrian.hunter-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> Cc: linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Signed-off-by: Sudeep Holla <sudeep.holla-5wv7dgnIgG8@public.gmane.org>

Thanks, applied for next!

Kind regards
Uffe

> ---
>  drivers/mmc/core/host.c        | 3 ++-
>  drivers/mmc/host/sdhci-pltfm.c | 3 ++-
>  2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mmc/core/host.c b/drivers/mmc/core/host.c
> index 5466f25f0281..85222bb56c73 100644
> --- a/drivers/mmc/core/host.c
> +++ b/drivers/mmc/core/host.c
> @@ -513,7 +513,8 @@ int mmc_of_parse(struct mmc_host *host)
>                 host->caps2 |= MMC_CAP2_FULL_PWR_CYCLE;
>         if (of_property_read_bool(np, "keep-power-in-suspend"))
>                 host->pm_caps |= MMC_PM_KEEP_POWER;
> -       if (of_property_read_bool(np, "enable-sdio-wakeup"))
> +       if (of_property_read_bool(np, "wakeup-source") ||
> +           of_property_read_bool(np, "enable-sdio-wakeup")) /* legacy */
>                 host->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
>         if (of_property_read_bool(np, "mmc-ddr-1_8v"))
>                 host->caps |= MMC_CAP_1_8V_DDR;
> diff --git a/drivers/mmc/host/sdhci-pltfm.c b/drivers/mmc/host/sdhci-pltfm.c
> index a207f5aaf62f..f00374bdafc9 100644
> --- a/drivers/mmc/host/sdhci-pltfm.c
> +++ b/drivers/mmc/host/sdhci-pltfm.c
> @@ -108,7 +108,8 @@ void sdhci_get_of_property(struct platform_device *pdev)
>         if (of_find_property(np, "keep-power-in-suspend", NULL))
>                 host->mmc->pm_caps |= MMC_PM_KEEP_POWER;
>
> -       if (of_find_property(np, "enable-sdio-wakeup", NULL))
> +       if (of_property_read_bool(np, "wakeup-source") ||
> +           of_property_read_bool(np, "enable-sdio-wakeup")) /* legacy */
>                 host->mmc->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
>  }
>  #else
> --
> 1.9.1
>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: ulf.hansson@linaro.org (Ulf Hansson)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 05/19] mmc: core/host: enable support for the standard "wakeup-source" property
Date: Thu, 19 Nov 2015 12:32:45 +0100	[thread overview]
Message-ID: <CAPDyKFrB7-SsBt_C9hvgwY-NHL-S8pvXmKc70f2Z_G2RoEpk9Q@mail.gmail.com> (raw)
In-Reply-To: <1445422216-29375-6-git-send-email-sudeep.holla@arm.com>

On 21 October 2015 at 12:10, Sudeep Holla <sudeep.holla@arm.com> wrote:
> Though the mmc core driver should/will continue to support the legacy
> "enable-sdio-wakeup" property to enable SDIO as the wakeup source, we
> need to add support for the new standard property "wakeup-source".
>
> This patch adds support for "wakeup-source" property in addition to the
> existing "enable-sdio-wakeup" property.
>
> Cc: Ulf Hansson <ulf.hansson@linaro.org>
> Cc: Adrian Hunter <adrian.hunter@intel.com>
> Cc: linux-mmc at vger.kernel.org
> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>

Thanks, applied for next!

Kind regards
Uffe

> ---
>  drivers/mmc/core/host.c        | 3 ++-
>  drivers/mmc/host/sdhci-pltfm.c | 3 ++-
>  2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mmc/core/host.c b/drivers/mmc/core/host.c
> index 5466f25f0281..85222bb56c73 100644
> --- a/drivers/mmc/core/host.c
> +++ b/drivers/mmc/core/host.c
> @@ -513,7 +513,8 @@ int mmc_of_parse(struct mmc_host *host)
>                 host->caps2 |= MMC_CAP2_FULL_PWR_CYCLE;
>         if (of_property_read_bool(np, "keep-power-in-suspend"))
>                 host->pm_caps |= MMC_PM_KEEP_POWER;
> -       if (of_property_read_bool(np, "enable-sdio-wakeup"))
> +       if (of_property_read_bool(np, "wakeup-source") ||
> +           of_property_read_bool(np, "enable-sdio-wakeup")) /* legacy */
>                 host->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
>         if (of_property_read_bool(np, "mmc-ddr-1_8v"))
>                 host->caps |= MMC_CAP_1_8V_DDR;
> diff --git a/drivers/mmc/host/sdhci-pltfm.c b/drivers/mmc/host/sdhci-pltfm.c
> index a207f5aaf62f..f00374bdafc9 100644
> --- a/drivers/mmc/host/sdhci-pltfm.c
> +++ b/drivers/mmc/host/sdhci-pltfm.c
> @@ -108,7 +108,8 @@ void sdhci_get_of_property(struct platform_device *pdev)
>         if (of_find_property(np, "keep-power-in-suspend", NULL))
>                 host->mmc->pm_caps |= MMC_PM_KEEP_POWER;
>
> -       if (of_find_property(np, "enable-sdio-wakeup", NULL))
> +       if (of_property_read_bool(np, "wakeup-source") ||
> +           of_property_read_bool(np, "enable-sdio-wakeup")) /* legacy */
>                 host->mmc->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
>  }
>  #else
> --
> 1.9.1
>

  reply	other threads:[~2015-11-19 11:32 UTC|newest]

Thread overview: 185+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-21 10:09 [PATCH 00/19] devicetree: standardize/consolidate on "wakeup-source" property Sudeep Holla
2015-10-21 10:09 ` Sudeep Holla
2015-10-21 10:09 ` [PATCH 01/19] Documentation: " Sudeep Holla
2015-10-21 10:09   ` Sudeep Holla
2015-10-21 10:09   ` Sudeep Holla
2015-10-21 22:02   ` Rob Herring
2015-10-21 22:02     ` Rob Herring
2015-10-21 22:02     ` Rob Herring
2015-10-21 10:09 ` [PATCH 02/19] Documentation: devicetree: fix reference to legacy wakeup properties Sudeep Holla
2015-10-21 10:09   ` Sudeep Holla
2015-10-21 10:09   ` Sudeep Holla
2015-10-21 22:04   ` Rob Herring
2015-10-21 22:04     ` Rob Herring
2015-10-21 22:04     ` Rob Herring
2015-10-28 18:23     ` Sudeep Holla
2015-10-28 18:23       ` Sudeep Holla
2015-10-28 18:23       ` Sudeep Holla
2015-10-30 18:29       ` Rob Herring
2015-10-30 18:29         ` Rob Herring
2015-10-30 18:29         ` Rob Herring
2015-10-21 10:10 ` [PATCH 03/19] rtc: opal: enable support for the stardard "wakeup-source" property Sudeep Holla
2015-10-21 10:10   ` Sudeep Holla
2015-10-21 10:10   ` [rtc-linux] " Sudeep Holla
2015-10-27 22:53   ` Alexandre Belloni
2015-10-27 22:53     ` Alexandre Belloni
2015-10-27 22:53     ` Alexandre Belloni
2015-10-27 22:53     ` [rtc-linux] " Alexandre Belloni
2015-10-21 10:10 ` [PATCH 04/19] rtc: isl12057: enable support for the standard " Sudeep Holla
2015-10-21 10:10   ` Sudeep Holla
2015-10-21 10:10   ` Sudeep Holla
2015-10-21 10:10   ` [rtc-linux] " Sudeep Holla
2015-10-27 22:53   ` Alexandre Belloni
2015-10-27 22:53     ` Alexandre Belloni
2015-10-27 22:53     ` [rtc-linux] " Alexandre Belloni
2015-10-21 10:10 ` [PATCH 05/19] mmc: core/host: " Sudeep Holla
2015-10-21 10:10   ` Sudeep Holla
2015-10-21 10:10   ` Sudeep Holla
2015-11-19 11:32   ` Ulf Hansson [this message]
2015-11-19 11:32     ` Ulf Hansson
2015-11-19 11:32     ` Ulf Hansson
2015-10-21 10:10 ` [PATCH 06/19] input: tegra-kbc: " Sudeep Holla
2015-10-21 10:10   ` Sudeep Holla
     [not found]   ` <1445422216-29375-7-git-send-email-sudeep.holla-5wv7dgnIgG8@public.gmane.org>
2015-10-23  6:39     ` Dmitry Torokhov
2015-10-23  6:39       ` Dmitry Torokhov
2015-10-23  6:39       ` Dmitry Torokhov
2015-10-23 10:23       ` Sudeep Holla
2015-10-23 10:23         ` Sudeep Holla
2015-10-23 10:23         ` Sudeep Holla
2015-10-26  8:33         ` Dmitry Torokhov
2015-10-26  8:33           ` Dmitry Torokhov
2015-10-21 10:10 ` [PATCH 07/19] ARM: dts: rockchip: replace gpio-key,wakeup with wakeup-source property Sudeep Holla
2015-10-21 10:10   ` [PATCH 07/19] ARM: dts: rockchip: replace gpio-key, wakeup " Sudeep Holla
2015-10-21 10:10   ` Sudeep Holla
2015-10-21 10:10 ` [PATCH 08/19] ARM: dts: spear: replace gpio-key,wakeup " Sudeep Holla
2015-10-21 10:10   ` [PATCH 08/19] ARM: dts: spear: replace gpio-key, wakeup " Sudeep Holla
2015-10-21 10:10   ` Sudeep Holla
2015-10-21 10:10 ` [PATCH 09/19] ARM: dts: am335x: replace gpio-key,wakeup " Sudeep Holla
2015-10-21 10:10   ` [PATCH 09/19] ARM: dts: am335x: replace gpio-key, wakeup " Sudeep Holla
2015-12-15 16:33   ` [PATCH 09/19] ARM: dts: am335x: replace gpio-key,wakeup " Sudeep Holla
2015-12-15 16:33     ` Sudeep Holla
2015-12-15 16:33     ` Sudeep Holla
2015-12-17 17:58     ` Tony Lindgren
2015-12-17 17:58       ` Tony Lindgren
2015-12-17 17:58       ` Tony Lindgren
2015-10-21 10:10 ` [PATCH 10/19] ARM: dts: at91: " Sudeep Holla
2015-10-21 10:10   ` [PATCH 10/19] ARM: dts: at91: replace gpio-key, wakeup " Sudeep Holla
2015-10-21 10:10   ` Sudeep Holla
2015-10-21 10:21   ` [PATCH 10/19] ARM: dts: at91: replace gpio-key,wakeup " Nicolas Ferre
2015-10-21 10:21     ` Nicolas Ferre
2015-10-21 10:21     ` Nicolas Ferre
2015-10-21 10:25     ` Sudeep Holla
2015-10-21 10:25       ` Sudeep Holla
2015-10-21 10:25       ` Sudeep Holla
2015-10-21 11:01       ` Ulf Hansson
2015-10-21 11:01         ` Ulf Hansson
2015-10-21 11:01         ` Ulf Hansson
2015-10-21 11:13         ` Sudeep Holla
2015-10-21 11:13           ` Sudeep Holla
2015-10-21 11:13           ` Sudeep Holla
2015-10-21 12:41           ` Sudeep Holla
2015-10-21 12:41             ` Sudeep Holla
2015-10-21 12:41             ` Sudeep Holla
2015-10-21 15:27             ` Nicolas Ferre
2015-10-21 15:27               ` Nicolas Ferre
2015-10-21 15:27               ` Nicolas Ferre
2015-10-21 10:10 ` [PATCH 11/19] ARM: dts: imx: replace legacy *,wakeup property with wakeup-source Sudeep Holla
2015-10-21 10:10   ` [PATCH 11/19] ARM: dts: imx: replace legacy *, wakeup " Sudeep Holla
2015-10-21 10:10   ` Sudeep Holla
2015-11-23  5:37   ` [PATCH 11/19] ARM: dts: imx: replace legacy *,wakeup " Shawn Guo
2015-11-23  5:37     ` Shawn Guo
2015-11-23  5:37     ` Shawn Guo
2015-11-26 11:33     ` Sudeep Holla
2015-11-26 11:33       ` Sudeep Holla
2015-11-26 11:33       ` Sudeep Holla
2015-12-02  1:54       ` Shawn Guo
2015-12-02  1:54         ` Shawn Guo
2015-12-02 10:05         ` Sudeep Holla
2015-12-02 10:05           ` Sudeep Holla
2015-10-21 10:10 ` [PATCH 12/19] ARM: dts: exynos: " Sudeep Holla
2015-10-21 10:10   ` [PATCH 12/19] ARM: dts: exynos: replace legacy *, wakeup " Sudeep Holla
2015-10-21 10:10   ` [PATCH 12/19] ARM: dts: exynos: replace legacy *,wakeup " Sudeep Holla
2015-12-15 16:35   ` Sudeep Holla
2015-12-15 16:35     ` [PATCH 12/19] ARM: dts: exynos: replace legacy *, wakeup " Sudeep Holla
2015-12-15 23:32     ` [PATCH 12/19] ARM: dts: exynos: replace legacy *,wakeup " Krzysztof Kozlowski
2015-12-15 23:32       ` [PATCH 12/19] ARM: dts: exynos: replace legacy *, wakeup " Krzysztof Kozlowski
2015-12-15 23:32       ` [PATCH 12/19] ARM: dts: exynos: replace legacy *,wakeup " Krzysztof Kozlowski
2015-12-16 10:32       ` Sudeep Holla
2015-12-16 10:32         ` [PATCH 12/19] ARM: dts: exynos: replace legacy *, wakeup " Sudeep Holla
2015-12-16 10:32         ` [PATCH 12/19] ARM: dts: exynos: replace legacy *,wakeup " Sudeep Holla
2015-12-16 23:38         ` Krzysztof Kozlowski
2015-12-16 23:38           ` [PATCH 12/19] ARM: dts: exynos: replace legacy *, wakeup " Krzysztof Kozlowski
2015-12-16 23:49   ` [PATCH 12/19] ARM: dts: exynos: replace legacy *,wakeup " Krzysztof Kozlowski
2015-12-16 23:49     ` [PATCH 12/19] ARM: dts: exynos: replace legacy *, wakeup " Krzysztof Kozlowski
2016-01-28  8:11     ` [PATCH 12/19] ARM: dts: exynos: replace legacy *,wakeup " Krzysztof Kozlowski
2016-01-28  8:11       ` [PATCH 12/19] ARM: dts: exynos: replace legacy *, wakeup " Krzysztof Kozlowski
2016-01-28 15:59       ` [UPDATE] [PATCH 12/19] ARM: dts: exynos: replace legacy *,wakeup " Sudeep Holla
2016-01-28 15:59         ` [UPDATE] [PATCH 12/19] ARM: dts: exynos: replace legacy *, wakeup " Sudeep Holla
2016-01-28 15:59         ` [UPDATE] [PATCH 12/19] ARM: dts: exynos: replace legacy *,wakeup " Sudeep Holla
2016-01-29  0:11         ` Krzysztof Kozlowski
2016-01-29  0:11           ` [UPDATE] [PATCH 12/19] ARM: dts: exynos: replace legacy *, wakeup " Krzysztof Kozlowski
2015-10-21 10:10 ` [PATCH 13/19] ARM: dts: tegra: replace legacy *,wakeup " Sudeep Holla
2015-10-21 10:10   ` [PATCH 13/19] ARM: dts: tegra: replace legacy *, wakeup " Sudeep Holla
2015-12-15 16:35   ` [PATCH 13/19] ARM: dts: tegra: replace legacy *,wakeup " Sudeep Holla
2015-12-15 16:35     ` Sudeep Holla
     [not found]   ` <1445422216-29375-14-git-send-email-sudeep.holla-5wv7dgnIgG8@public.gmane.org>
2015-12-23 11:24     ` Sudeep Holla
2015-12-23 11:24       ` Sudeep Holla
2015-12-23 11:24       ` Sudeep Holla
2015-10-21 10:10 ` [PATCH 14/19] ARM: dts: shmobile/r8a7xxx: replace gpio-key,wakeup with wakeup-source property Sudeep Holla
2015-10-21 10:10   ` [PATCH 14/19] ARM: dts: shmobile/r8a7xxx: replace gpio-key, wakeup " Sudeep Holla
2015-10-21 10:10   ` [PATCH 14/19] ARM: dts: shmobile/r8a7xxx: replace gpio-key,wakeup " Sudeep Holla
2015-10-21 10:18   ` Geert Uytterhoeven
2015-10-21 10:18     ` [PATCH 14/19] ARM: dts: shmobile/r8a7xxx: replace gpio-key, wakeup " Geert Uytterhoeven
2015-10-21 10:18     ` [PATCH 14/19] ARM: dts: shmobile/r8a7xxx: replace gpio-key,wakeup " Geert Uytterhoeven
2015-10-21 10:18     ` Geert Uytterhoeven
2015-10-21 10:23     ` Sudeep Holla
2015-10-21 10:23       ` [PATCH 14/19] ARM: dts: shmobile/r8a7xxx: replace gpio-key, wakeup " Sudeep Holla
2015-10-21 10:23       ` [PATCH 14/19] ARM: dts: shmobile/r8a7xxx: replace gpio-key,wakeup " Sudeep Holla
2015-10-21 10:23       ` Sudeep Holla
2015-10-22  0:50       ` Simon Horman
2015-10-22  0:50         ` Simon Horman
2015-10-22  0:50         ` Simon Horman
2015-10-22  0:50         ` Simon Horman
2015-10-22  9:37         ` Sudeep Holla
2015-10-22  9:37           ` [PATCH 14/19] ARM: dts: shmobile/r8a7xxx: replace gpio-key, wakeup " Sudeep Holla
2015-10-22  9:37           ` [PATCH 14/19] ARM: dts: shmobile/r8a7xxx: replace gpio-key,wakeup " Sudeep Holla
2015-10-22  9:37           ` Sudeep Holla
2015-10-23  0:18           ` Simon Horman
2015-10-23  0:18             ` Simon Horman
2015-10-23  0:18             ` Simon Horman
2015-10-23  0:18             ` Simon Horman
2015-10-21 10:10 ` [PATCH 15/19] ARM: dts: omap: replace legacy *,wakeup property with wakeup-source Sudeep Holla
2015-10-21 10:10   ` [PATCH 15/19] ARM: dts: omap: replace legacy *, wakeup " Sudeep Holla
2015-12-15 16:37   ` [PATCH 15/19] ARM: dts: omap: replace legacy *,wakeup " Sudeep Holla
2015-12-15 16:37     ` Sudeep Holla
2015-12-17 17:58     ` Tony Lindgren
2015-12-17 17:58       ` Tony Lindgren
2015-10-21 10:10 ` [PATCH 16/19] ARM: dts: s5pv210: " Sudeep Holla
2015-10-21 10:10   ` [PATCH 16/19] ARM: dts: s5pv210: replace legacy *, wakeup " Sudeep Holla
2015-12-15 16:37   ` [PATCH 16/19] ARM: dts: s5pv210: replace legacy *,wakeup " Sudeep Holla
2015-12-15 16:37     ` [PATCH 16/19] ARM: dts: s5pv210: replace legacy *, wakeup " Sudeep Holla
2015-12-16 23:52   ` [PATCH 16/19] ARM: dts: s5pv210: replace legacy *,wakeup " Krzysztof Kozlowski
2015-12-16 23:52     ` [PATCH 16/19] ARM: dts: s5pv210: replace legacy *, wakeup " Krzysztof Kozlowski
2015-10-21 10:10 ` [PATCH 17/19] ARM: dts: armada: replace isil,irq2-can-wakeup-machine with wakeup-source property Sudeep Holla
2015-10-21 10:10   ` [PATCH 17/19] ARM: dts: armada: replace isil, irq2-can-wakeup-machine " Sudeep Holla
2015-12-15 16:39   ` [PATCH 17/19] ARM: dts: armada: replace isil,irq2-can-wakeup-machine " Sudeep Holla
2015-12-15 16:39     ` Sudeep Holla
2015-12-15 16:56     ` Gregory CLEMENT
2015-12-15 16:56       ` [PATCH 17/19] ARM: dts: armada: replace isil, irq2-can-wakeup-machine " Gregory CLEMENT
2015-10-21 10:10 ` [PATCH 18/19] ARM: dts: ste: replace legacy *,wakeup property with wakeup-source Sudeep Holla
2015-10-21 10:10   ` [PATCH 18/19] ARM: dts: ste: replace legacy *, wakeup " Sudeep Holla
2015-10-27 12:34   ` [PATCH 18/19] ARM: dts: ste: replace legacy *,wakeup " Linus Walleij
2015-10-27 12:34     ` Linus Walleij
2015-10-27 12:34     ` Linus Walleij
2015-10-27 12:46     ` Sudeep Holla
2015-10-27 12:46       ` Sudeep Holla
2015-10-27 12:46       ` Sudeep Holla
2015-11-05  9:26       ` Linus Walleij
2015-11-05  9:26         ` Linus Walleij
2015-11-05  9:26         ` Linus Walleij
2015-10-21 10:10 ` [PATCH 19/19] ARM: dts: zynq: replace gpio-key,wakeup with wakeup-source property Sudeep Holla
2015-10-21 10:10   ` [PATCH 19/19] ARM: dts: zynq: replace gpio-key, wakeup " Sudeep Holla
2015-10-21 10:10   ` [PATCH 19/19] ARM: dts: zynq: replace gpio-key,wakeup " Sudeep Holla
2015-10-29  8:56   ` Michal Simek
2015-10-29  8:56     ` Michal Simek
2015-10-29  8:56     ` Michal Simek

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=CAPDyKFrB7-SsBt_C9hvgwY-NHL-S8pvXmKc70f2Z_G2RoEpk9Q@mail.gmail.com \
    --to=ulf.hansson@linaro.org \
    --cc=adrian.hunter@intel.com \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=sudeep.holla@arm.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 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.