From: Sebastian Siewior Date: Mon, 5 May 2008 07:31:50 +0000 (+0200) Subject: usb: fix compile warning in isp1760 X-Git-Tag: upstream/snapshot3+hdmi~25006^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fe312e77f0ed4349e908b1575be0d4308f0b2ce4;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git usb: fix compile warning in isp1760 drivers/usb/host/isp1760-if.c:275: warning: 'ret' is used uninitialized in this function Signed-off-by: Sebastian Siewior Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/isp1760-if.c b/drivers/usb/host/isp1760-if.c index 73fb2a3..440bf94 100644 --- a/drivers/usb/host/isp1760-if.c +++ b/drivers/usb/host/isp1760-if.c @@ -256,7 +256,7 @@ static struct pci_driver isp1761_pci_driver = { static int __init isp1760_init(void) { - int ret; + int ret = -ENODEV; init_kmem_once();