Skip to content

Commit

Permalink
remove another compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gregkh committed Mar 16, 2010
1 parent 54e7a1b commit 102769a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adcboard.c
Expand Up @@ -723,7 +723,7 @@ int __init init_module()
}
printk(KERN_INFO"%s: No I/O space for ADC board\n", devname);
return -ENODEV;
addr_found: (void)pci_enable_device(pdev); /* Now enable the device */
addr_found: result = pci_enable_device(pdev); /* Now enable the device */
if((info = (INFO *) kmalloc(sizeof(INFO), GFP_KERNEL)) == NULL)
{
printk(KERN_CRIT"%s: Can't allocate memory\n", devname);
Expand Down

0 comments on commit 102769a

Please sign in to comment.