Skip to content

Commit

Permalink
usb: fix compile warning in isp1760
Browse files Browse the repository at this point in the history
drivers/usb/host/isp1760-if.c:275: warning: 'ret' is used uninitialized in this function

Signed-off-by: Sebastian Siewior <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
Sebastian Siewior authored and gregkh committed May 14, 2008
1 parent cdafc37 commit fe312e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/host/isp1760-if.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit fe312e7

Please sign in to comment.