sbus: Add prototype for bbc_envctrl_init and bbc_envctrl_cleanup to header
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 4 Mar 2024 22:30:08 +0000 (23:30 +0100)
committerAndreas Larsson <andreas@gaisler.com>
Fri, 8 Mar 2024 20:26:23 +0000 (21:26 +0100)
commit61fc8d40676c0742882f86071ced8f2b81c488bc
tree70409ba08d93ad528dab83e94206102626b664f0
parent24338a6ae13cb743ced77da1b3a12c83f08a0c96
sbus: Add prototype for bbc_envctrl_init and bbc_envctrl_cleanup to header

This fixes the following build warning:

drivers/sbus/char/bbc_envctrl.c:566:5: error: no previous prototype for ‘bbc_envctrl_init’ [-Werror=missing-prototypes]
  566 | int bbc_envctrl_init(struct bbc_i2c_bus *bp)
      |     ^~~~~~~~~~~~~~~~
drivers/sbus/char/bbc_envctrl.c:594:6: error: no previous prototype for ‘bbc_envctrl_cleanup’ [-Werror=missing-prototypes]
  594 | void bbc_envctrl_cleanup(struct bbc_i2c_bus *bp)
      |      ^~~~~~~~~~~~~~~~~~~

which in the presence of -Werror=missing-prototypes yields a compiler
error.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Reviewed-by: Andreas Larsson <andreas@gaisler.com>
Signed-off-by: Andreas Larsson <andreas@gaisler.com>
Link: https://lore.kernel.org/r/57bc3b43b405431a486162fb8c2558072e976747.1709591118.git.u.kleine-koenig@pengutronix.de
drivers/sbus/char/bbc_i2c.c
drivers/sbus/char/bbc_i2c.h