From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
To: Jan Kiszka <jan.kiszka-kv7WeFo6aLtBDgjK7y7TUQ@public.gmane.org>
Cc: Russell King <linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Subject: Re: [PATCH 1/2] ARM: Availability of psci_smp_available depends on CONFIG_SMP
Date: Fri, 8 May 2015 13:26:17 +0200 [thread overview]
Message-ID: <20150508112615.GE32221@ulmo.nvidia.com> (raw)
In-Reply-To: <0f0a77ddee48027efa35f36d6c809d2d3ff91ce1.1431064527.git.jan.kiszka-kv7WeFo6aLtBDgjK7y7TUQ@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 1110 bytes --]
On Fri, May 08, 2015 at 07:55:26AM +0200, Jan Kiszka wrote:
> Ensure that we can use psci_smp_available without checking for
> CONFIG_SMP first.
>
> Signed-off-by: Jan Kiszka <jan.kiszka-kv7WeFo6aLtBDgjK7y7TUQ@public.gmane.org>
> ---
> arch/arm/include/asm/psci.h | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/include/asm/psci.h b/arch/arm/include/asm/psci.h
> index c25ef3e..eef6a0a 100644
> --- a/arch/arm/include/asm/psci.h
> +++ b/arch/arm/include/asm/psci.h
> @@ -39,9 +39,13 @@ extern struct smp_operations psci_smp_ops;
>
> #ifdef CONFIG_ARM_PSCI
> int psci_init(void);
> -bool psci_smp_available(void);
> #else
> static inline int psci_init(void) { return 0; }
> +#endif
> +
> +#if defined(CONFIG_ARM_PSCI) && defined(CONFIG_SMP)
> +bool psci_smp_available(void);
> +#else
> static inline bool psci_smp_available(void) { return false; }
> #endif
>
Looks good to me.
Russell, would you be willing to ack this patch so that I can take it
through the Tegra tree along with patch 2/2 that depends on this?
Thierry
[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: treding@nvidia.com (Thierry Reding)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/2] ARM: Availability of psci_smp_available depends on CONFIG_SMP
Date: Fri, 8 May 2015 13:26:17 +0200 [thread overview]
Message-ID: <20150508112615.GE32221@ulmo.nvidia.com> (raw)
In-Reply-To: <0f0a77ddee48027efa35f36d6c809d2d3ff91ce1.1431064527.git.jan.kiszka@siemens.com>
On Fri, May 08, 2015 at 07:55:26AM +0200, Jan Kiszka wrote:
> Ensure that we can use psci_smp_available without checking for
> CONFIG_SMP first.
>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
> arch/arm/include/asm/psci.h | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/include/asm/psci.h b/arch/arm/include/asm/psci.h
> index c25ef3e..eef6a0a 100644
> --- a/arch/arm/include/asm/psci.h
> +++ b/arch/arm/include/asm/psci.h
> @@ -39,9 +39,13 @@ extern struct smp_operations psci_smp_ops;
>
> #ifdef CONFIG_ARM_PSCI
> int psci_init(void);
> -bool psci_smp_available(void);
> #else
> static inline int psci_init(void) { return 0; }
> +#endif
> +
> +#if defined(CONFIG_ARM_PSCI) && defined(CONFIG_SMP)
> +bool psci_smp_available(void);
> +#else
> static inline bool psci_smp_available(void) { return false; }
> #endif
>
Looks good to me.
Russell, would you be willing to ack this patch so that I can take it
through the Tegra tree along with patch 2/2 that depends on this?
Thierry
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20150508/3f33b4f0/attachment.sig>
next prev parent reply other threads:[~2015-05-08 11:26 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-08 5:55 [PATCH 0/2] Make Tegra cpuidle driver PSCI compatible Jan Kiszka
2015-05-08 5:55 ` Jan Kiszka
2015-05-08 5:55 ` [PATCH 1/2] ARM: Availability of psci_smp_available depends on CONFIG_SMP Jan Kiszka
2015-05-08 5:55 ` Jan Kiszka
[not found] ` <0f0a77ddee48027efa35f36d6c809d2d3ff91ce1.1431064527.git.jan.kiszka-kv7WeFo6aLtBDgjK7y7TUQ@public.gmane.org>
2015-05-08 11:26 ` Thierry Reding [this message]
2015-05-08 11:26 ` Thierry Reding
[not found] ` <20150508112615.GE32221-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>
2015-05-08 14:56 ` Russell King - ARM Linux
2015-05-08 14:56 ` Russell King - ARM Linux
[not found] ` <20150508145620.GK2067-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2015-05-08 16:14 ` Will Deacon
2015-05-08 16:14 ` Will Deacon
[not found] ` <20150508161453.GI25587-5wv7dgnIgG8@public.gmane.org>
2015-05-10 9:48 ` Jan Kiszka
2015-05-10 9:48 ` Jan Kiszka
[not found] ` <554F2964.3060802-kv7WeFo6aLtBDgjK7y7TUQ@public.gmane.org>
2015-05-11 12:13 ` Peter De Schrijver
2015-05-11 12:13 ` Peter De Schrijver
2015-05-08 5:55 ` [PATCH 2/2] ARM: tegra: Disable cpuidle driver if PSCI is present Jan Kiszka
2015-05-08 5:55 ` Jan Kiszka
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=20150508112615.GE32221@ulmo.nvidia.com \
--to=treding-ddmlm1+adcrqt0dzr+alfa@public.gmane.org \
--cc=jan.kiszka-kv7WeFo6aLtBDgjK7y7TUQ@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
--cc=linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
/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.