staging: usbip: Fix bad fuction definitions in usbip
authorPawel Lebioda <pawel.lebioda89@gmail.com>
Wed, 14 May 2014 19:28:27 +0000 (21:28 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 May 2014 16:59:36 +0000 (01:59 +0900)
Fix bad function definitions in all files from drivers/staging/usbip directory

Signed-off-by: Pawel Lebioda <pawel.lebioda89@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/usbip/userspace/libsrc/usbip_common.c
drivers/staging/usbip/userspace/libsrc/vhci_driver.c
drivers/staging/usbip/userspace/src/usbip_port.c
drivers/staging/usbip/userspace/src/usbipd.c

index 05a7443..ac73710 100644 (file)
@@ -237,7 +237,7 @@ int usbip_names_init(char *f)
        return names_init(f);
 }
 
-void usbip_names_free()
+void usbip_names_free(void)
 {
        names_free();
 }
index 8901fcb..ad92047 100644 (file)
@@ -260,7 +260,7 @@ err:
 }
 
 
-void usbip_vhci_driver_close()
+void usbip_vhci_driver_close(void)
 {
        if (!vhci_driver)
                return;
index 52aa168..a2e884f 100644 (file)
@@ -16,7 +16,7 @@
 #include "vhci_driver.h"
 #include "usbip_common.h"
 
-static int list_imported_devices()
+static int list_imported_devices(void)
 {
        int i;
        struct usbip_imported_device *idev;
index b32047a..2f87f2d 100644 (file)
@@ -458,7 +458,7 @@ static void set_signal(void)
 
 static const char *pid_file;
 
-static void write_pid_file()
+static void write_pid_file(void)
 {
        if (pid_file) {
                dbg("creating pid file %s", pid_file);
@@ -475,7 +475,7 @@ static void write_pid_file()
        }
 }
 
-static void remove_pid_file()
+static void remove_pid_file(void)
 {
        if (pid_file) {
                dbg("removing pid file %s", pid_file);