usb: gadget: udc: goku_udc: don't print on ENOMEM

All kmalloc-based functions print enough information on failures.

Signed-off-by: Wolfram Sang <wsa-dev@sang-engineering.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
This commit is contained in:
Wolfram Sang 2016-08-25 19:39:04 +02:00 committed by Felipe Balbi
parent b8246caf89
commit 1a7c1d58c6
1 changed files with 1 additions and 2 deletions

View File

@ -1767,8 +1767,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)
/* alloc, and start init */
dev = kzalloc (sizeof *dev, GFP_KERNEL);
if (dev == NULL){
pr_debug("enomem %s\n", pci_name(pdev));
if (!dev) {
retval = -ENOMEM;
goto err;
}