diff options
author | Lee Jones <lee.jones@linaro.org> | 2021-03-31 09:09:46 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2021-06-02 10:50:03 +0100 |
commit | 926337b211d7936be45af9ee09f6d2107a58f998 (patch) | |
tree | 7baa37a943955938e52b73a4ccf2923938510599 | |
parent | 3a7e046acf26b10016e9be688633325f01600e2a (diff) | |
download | linux-stable-926337b211d7936be45af9ee09f6d2107a58f998.tar.gz linux-stable-926337b211d7936be45af9ee09f6d2107a58f998.tar.bz2 linux-stable-926337b211d7936be45af9ee09f6d2107a58f998.zip |
mfd: wm831x-core: Fix incorrect function name wm831x_reg_unlock()
Fixes the following W=1 kernel build warning(s):
drivers/mfd/wm831x-core.c:121: warning: expecting prototype for wm831x_reg_unlock(). Prototype was for wm831x_reg_lock() instead
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: patches@opensource.cirrus.com
Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r-- | drivers/mfd/wm831x-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/wm831x-core.c b/drivers/mfd/wm831x-core.c index bcef08f58fb3..c31809b17547 100644 --- a/drivers/mfd/wm831x-core.c +++ b/drivers/mfd/wm831x-core.c @@ -109,7 +109,7 @@ static int wm831x_reg_locked(struct wm831x *wm831x, unsigned short reg) } /** - * wm831x_reg_unlock: Unlock user keyed registers + * wm831x_reg_lock: Unlock user keyed registers * * The WM831x has a user key preventing writes to particularly * critical registers. This function locks those registers, |