提交 8c037e0c 编写于 作者: P Philipp Zabel 提交者: Lee Jones

mfd: syscon: Return ENOTSUPP instead of ENOSYS when disabled

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: NPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: NLee Jones <lee.jones@linaro.org>
上级 e9b7ba79
...@@ -29,24 +29,24 @@ extern struct regmap *syscon_regmap_lookup_by_phandle( ...@@ -29,24 +29,24 @@ extern struct regmap *syscon_regmap_lookup_by_phandle(
#else #else
static inline struct regmap *syscon_node_to_regmap(struct device_node *np) 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) 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) 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( static inline struct regmap *syscon_regmap_lookup_by_phandle(
struct device_node *np, struct device_node *np,
const char *property) const char *property)
{ {
return ERR_PTR(-ENOSYS); return ERR_PTR(-ENOTSUPP);
} }
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册