cciss: return 0 from driver probe function on success, not 1
A return value of 1 is interpreted as an error Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
2e44b42718
commit
b88fac630b
1 changed files with 1 additions and 1 deletions
|
@ -5183,7 +5183,7 @@ static int cciss_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||
rebuild_lun_table(h, 1, 0);
|
||||
cciss_engage_scsi(h);
|
||||
h->busy_initializing = 0;
|
||||
return 1;
|
||||
return 0;
|
||||
|
||||
clean4:
|
||||
cciss_free_cmd_pool(h);
|
||||
|
|
Loading…
Add table
Reference in a new issue