Commit 5312f321 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Lee Jones
Browse files

mfd: syscon: Fix syscon_regmap_lookup_by_phandle_args() dummy



If CONFIG_MFD_SYSCON=n:

    include/linux/mfd/syscon.h:54:23: warning: ‘syscon_regmap_lookup_by_phandle_args’ defined but not used [-Wunused-function]

Fix this by adding the missing inline keyword.

Fixes: 6a24f567 ("mfd: syscon: Add arguments support for syscon reference")
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 6ac7e4d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -51,7 +51,7 @@ static inline struct regmap *syscon_regmap_lookup_by_phandle(
	return ERR_PTR(-ENOTSUPP);
	return ERR_PTR(-ENOTSUPP);
}
}


static struct regmap *syscon_regmap_lookup_by_phandle_args(
static inline struct regmap *syscon_regmap_lookup_by_phandle_args(
					struct device_node *np,
					struct device_node *np,
					const char *property,
					const char *property,
					int arg_count,
					int arg_count,