Commit c2f4527e authored by Monam Agarwal's avatar Monam Agarwal Committed by Greg Kroah-Hartman

Staging: rts5139: Fix Sparse Warning for Static Declarations in rts51x.c

This patch fixes the following sparse warning in rts51x.c

drivers/staging/rts5139/rts51x.c:218:5: warning: symbol 'rts51x_pre_reset' was not declared. Should it be static?
drivers/staging/rts5139/rts51x.c:229:5: warning: symbol 'rts51x_post_reset' was not declared. Should it be static?
Signed-off-by: default avatarMonam Agarwal <monamagarwal123@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 064bf470
...@@ -215,7 +215,7 @@ void rts51x_try_to_exit_ss(struct rts51x_chip *chip) ...@@ -215,7 +215,7 @@ void rts51x_try_to_exit_ss(struct rts51x_chip *chip)
* a USB port reset, whether from this driver or a different one. * a USB port reset, whether from this driver or a different one.
*/ */
int rts51x_pre_reset(struct usb_interface *iface) static int rts51x_pre_reset(struct usb_interface *iface)
{ {
struct rts51x_chip *chip = usb_get_intfdata(iface); struct rts51x_chip *chip = usb_get_intfdata(iface);
...@@ -226,7 +226,7 @@ int rts51x_pre_reset(struct usb_interface *iface) ...@@ -226,7 +226,7 @@ int rts51x_pre_reset(struct usb_interface *iface)
return 0; return 0;
} }
int rts51x_post_reset(struct usb_interface *iface) static int rts51x_post_reset(struct usb_interface *iface)
{ {
struct rts51x_chip *chip = usb_get_intfdata(iface); struct rts51x_chip *chip = usb_get_intfdata(iface);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment