Commit 19495513 authored by Pawel Lebioda's avatar Pawel Lebioda Committed by Greg Kroah-Hartman
Browse files

staging: usbip: Fix bad fuction definitions in usbip



Fix bad function definitions in all files from drivers/staging/usbip directory

Signed-off-by: default avatarPawel Lebioda <pawel.lebioda89@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3eed8c03
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();
}
+1 −1
Original line number Diff line number Diff line
@@ -260,7 +260,7 @@ err:
}


void usbip_vhci_driver_close()
void usbip_vhci_driver_close(void)
{
	if (!vhci_driver)
		return;
+1 −1
Original line number Diff line number Diff line
@@ -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;
+2 −2
Original line number Diff line number Diff line
@@ -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);