1
0
Fork 0

cciss: fix call to put_controller_in_performant_mode

call to put_controller_in_performant_mode was in the wrong place
The call inadvertently ended up in an error path.

Signed-off-by: Mike Miller <mike.miller@hp.com>
Cc: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
hifive-unleashed-5.1
Mike Miller 2010-06-11 13:13:35 +02:00 committed by Jens Axboe
parent 256aea3fd3
commit b14aa6dcd0
1 changed files with 1 additions and 1 deletions

View File

@ -4150,6 +4150,7 @@ static int __devinit cciss_pci_init(ctlr_info_t *c, struct pci_dev *pdev)
#ifdef CCISS_DEBUG
printk(KERN_WARNING "Trying to put board into Performant mode\n");
#endif /* CCISS_DEBUG */
cciss_put_controller_into_performant_mode(c);
return 0;
err_out_free_res:
@ -4158,7 +4159,6 @@ err_out_free_res:
* Smart Array controllers that pci_enable_device does not undo
*/
pci_release_regions(pdev);
cciss_put_controller_into_performant_mode(c);
return err;
}