[usbip-devel] [PATCH 10/15] staging: usbip: simplified cleanup function
Status: Alpha
Brought to you by:
hirofuchi
From: Stefan R. <ke4...@ci...> - 2013-04-04 14:09:07
|
From: Kurt Kanzenbach <ly8...@ci...> This patch simplified "stub_device_free" cleanup function: - changed return type to void, since the return value is not checked anywhere - kfree is NULL-safe, so removed if statement - deleted debug-message Signed-off-by: Kurt Kanzenbach <ly8...@ci...> Signed-off-by: Stefan Reif <ke4...@ci...> --- drivers/staging/usbip/stub_dev.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/drivers/staging/usbip/stub_dev.c b/drivers/staging/usbip/stub_dev.c index c75ae63..83d629a 100644 --- a/drivers/staging/usbip/stub_dev.c +++ b/drivers/staging/usbip/stub_dev.c @@ -327,15 +327,9 @@ static struct stub_device *stub_device_alloc(struct usb_device *udev, return sdev; } -static int stub_device_free(struct stub_device *sdev) +static void stub_device_free(struct stub_device *sdev) { - if (!sdev) - return -EINVAL; - kfree(sdev); - pr_debug("kfree udev ok\n"); - - return 0; } /* -- 1.8.1 |