Skip to content

Commit

Permalink
alim15x3: fix sparse warning
Browse files Browse the repository at this point in the history
Fix this sparse warning:

  drivers/ide/alim15x3.c:594:2: warning: returning void-valued expression

Signed-off-by: Hannes Eder <[email protected]>
Signed-off-by: Bartlomiej Zolnierkiewicz <[email protected]>
  • Loading branch information
hanneseder-net authored and bzolnier committed Dec 2, 2008
1 parent a366380 commit 9596401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/ide/alim15x3.c
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ static int __init ali15x3_ide_init(void)

static void __exit ali15x3_ide_exit(void)
{
return pci_unregister_driver(&alim15x3_pci_driver);
pci_unregister_driver(&alim15x3_pci_driver);
}

module_init(ali15x3_ide_init);
Expand Down

0 comments on commit 9596401

Please sign in to comment.