From: Johan Hovold Date: Fri, 17 Mar 2017 10:35:32 +0000 (+0100) Subject: USB: adutux: drop redundant sanity check X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=15a818f459d2081b17861472b4b953b8a19ea587;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git USB: adutux: drop redundant sanity check Drop a redundant sanity check for a NULL parent usb device, which is never true. Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/misc/adutux.c b/drivers/usb/misc/adutux.c index db9a9e6ff6be..f0116d120468 100644 --- a/drivers/usb/misc/adutux.c +++ b/drivers/usb/misc/adutux.c @@ -662,11 +662,6 @@ static int adu_probe(struct usb_interface *interface, int out_end_size; int i; - if (udev == NULL) { - dev_err(&interface->dev, "udev is NULL.\n"); - goto exit; - } - /* allocate memory for our device state and initialize it */ dev = kzalloc(sizeof(struct adu_device), GFP_KERNEL); if (!dev) {