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 <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Johan Hovold 2017-03-17 11:35:32 +01:00 коммит произвёл Greg Kroah-Hartman
Родитель 279daf4e05
Коммит 15a818f459
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -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) {