Commit ff4708e6 authored by Rashika Kheria's avatar Rashika Kheria Committed by Greg Kroah-Hartman

drivers: usb: Mark function as static in usbsevseg.c

Mark function my_memlen() as static in misc/usbsevseg.c because it is
not used outside this file.

This eliminates the following warning in misc/usbsevseg.c:
drivers/usb/misc/usbsevseg.c:60:15: warning: no previous prototype for ‘my_memlen’ [-Wmissing-prototypes]
Signed-off-by: default avatarRashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 81574fc6
...@@ -57,7 +57,7 @@ struct usb_sevsegdev { ...@@ -57,7 +57,7 @@ struct usb_sevsegdev {
* if str commands are used, we would assume the end of string * if str commands are used, we would assume the end of string
* so mem commands are used. * so mem commands are used.
*/ */
inline size_t my_memlen(const char *buf, size_t count) static inline size_t my_memlen(const char *buf, size_t count)
{ {
if (count > 0 && buf[count-1] == '\n') if (count > 0 && buf[count-1] == '\n')
return count - 1; return count - 1;
......
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