diff options
| author | TheStrechh <TheStrechh@gmail.com> | 2023-11-11 02:47:56 +0530 |
|---|---|---|
| committer | TheStrechh <TheStrechh@gmail.com> | 2023-11-11 02:47:56 +0530 |
| commit | 2ca5b1e4a41ec08524ea1c0e43ad7403015e1d2c (patch) | |
| tree | cc13d1c2392b2b4d758d7d0df9a7e3afa1eaa18c | |
| parent | b47c8375efcb9914e1aed12ca95f0b4fb8f887cb (diff) | |
drivers: Add missing prototype to function declarationst13.0
| -rw-r--r-- | drivers/misc/wl2866d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/wl2866d.c b/drivers/misc/wl2866d.c index fbc54376ff46..427fdc467b7f 100644 --- a/drivers/misc/wl2866d.c +++ b/drivers/misc/wl2866d.c @@ -76,7 +76,7 @@ static int wl2866d_i2c_read(struct wl2866d_chip *chip, return ret; } -int wl2866d_camera_power_down_all() +int wl2866d_camera_power_down_all(void) { int ret = -1; ret = wl2866d_i2c_write(camera_chip, wl2866d_on_config[VOL_ENABLE].reg, 0);//bit1 |
