linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mfd: syscon: return ENOTSUPP instead of ENOSYS when disabled
@ 2016-01-29  8:42 Philipp Zabel
  2016-02-11 17:11 ` Lee Jones
  0 siblings, 1 reply; 2+ messages in thread
From: Philipp Zabel @ 2016-01-29  8:42 UTC (permalink / raw)
  To: Lee Jones; +Cc: linux-kernel, Philipp Zabel

When CONFIG_MFD_SYSCON is disabled, have the function stubs return
ENOTSUPP to indicate the syscon functionality is not available.
There are currently no callers that depend on the ENOSYS return value.

This patchfixes a checkpatch warning:
    WARNING: ENOSYS means 'invalid syscall nr' and nothing else

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
 include/linux/mfd/syscon.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/linux/mfd/syscon.h b/include/linux/mfd/syscon.h
index 75e543b..1088149 100644
--- a/include/linux/mfd/syscon.h
+++ b/include/linux/mfd/syscon.h
@@ -29,24 +29,24 @@ extern struct regmap *syscon_regmap_lookup_by_phandle(
 #else
 static inline struct regmap *syscon_node_to_regmap(struct device_node *np)
 {
-	return ERR_PTR(-ENOSYS);
+	return ERR_PTR(-ENOTSUPP);
 }
 
 static inline struct regmap *syscon_regmap_lookup_by_compatible(const char *s)
 {
-	return ERR_PTR(-ENOSYS);
+	return ERR_PTR(-ENOTSUPP);
 }
 
 static inline struct regmap *syscon_regmap_lookup_by_pdevname(const char *s)
 {
-	return ERR_PTR(-ENOSYS);
+	return ERR_PTR(-ENOTSUPP);
 }
 
 static inline struct regmap *syscon_regmap_lookup_by_phandle(
 					struct device_node *np,
 					const char *property)
 {
-	return ERR_PTR(-ENOSYS);
+	return ERR_PTR(-ENOTSUPP);
 }
 #endif
 
-- 
2.7.0.rc3

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

* Re: [PATCH] mfd: syscon: return ENOTSUPP instead of ENOSYS when disabled
  2016-01-29  8:42 [PATCH] mfd: syscon: return ENOTSUPP instead of ENOSYS when disabled Philipp Zabel
@ 2016-02-11 17:11 ` Lee Jones
  0 siblings, 0 replies; 2+ messages in thread
From: Lee Jones @ 2016-02-11 17:11 UTC (permalink / raw)
  To: Philipp Zabel; +Cc: linux-kernel

On Fri, 29 Jan 2016, Philipp Zabel wrote:

> When CONFIG_MFD_SYSCON is disabled, have the function stubs return
> ENOTSUPP to indicate the syscon functionality is not available.
> There are currently no callers that depend on the ENOSYS return value.
> 
> This patchfixes a checkpatch warning:
>     WARNING: ENOSYS means 'invalid syscall nr' and nothing else
> 
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> ---
>  include/linux/mfd/syscon.h | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)

Applied, thanks.

> diff --git a/include/linux/mfd/syscon.h b/include/linux/mfd/syscon.h
> index 75e543b..1088149 100644
> --- a/include/linux/mfd/syscon.h
> +++ b/include/linux/mfd/syscon.h
> @@ -29,24 +29,24 @@ extern struct regmap *syscon_regmap_lookup_by_phandle(
>  #else
>  static inline struct regmap *syscon_node_to_regmap(struct device_node *np)
>  {
> -	return ERR_PTR(-ENOSYS);
> +	return ERR_PTR(-ENOTSUPP);
>  }
>  
>  static inline struct regmap *syscon_regmap_lookup_by_compatible(const char *s)
>  {
> -	return ERR_PTR(-ENOSYS);
> +	return ERR_PTR(-ENOTSUPP);
>  }
>  
>  static inline struct regmap *syscon_regmap_lookup_by_pdevname(const char *s)
>  {
> -	return ERR_PTR(-ENOSYS);
> +	return ERR_PTR(-ENOTSUPP);
>  }
>  
>  static inline struct regmap *syscon_regmap_lookup_by_phandle(
>  					struct device_node *np,
>  					const char *property)
>  {
> -	return ERR_PTR(-ENOSYS);
> +	return ERR_PTR(-ENOTSUPP);
>  }
>  #endif
>  

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

end of thread, other threads:[~2016-02-11 17:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-29  8:42 [PATCH] mfd: syscon: return ENOTSUPP instead of ENOSYS when disabled Philipp Zabel
2016-02-11 17:11 ` Lee Jones

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).