diff options
author | Mike Miller <mike.miller@hp.com> | 2008-08-04 05:54:55 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2008-08-06 06:30:04 -0400 |
commit | ba198efb5ef4e5f4927a18ff95a58f40c58cbaa9 (patch) | |
tree | d379e3bc55b3c85114334661f9e3c723fbddff78 /drivers/block | |
parent | 935dc8d7575e6c1292b057e39045a40f1fbe26e7 (diff) |
cciss: fix bug if scsi tape support is disabled
Bug fix. If SCSI tape support is turned off we get an implicit declaration
of cciss_unregister_scsi error in cciss_remove_one.
Signed-off-by: Mike Miller <mike.miller@hp.com>
Signed-off-by: Stephen M. Cameron <scameron@beardog.cca.cpqcorp.net>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/cciss.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 9ffa821fbfd7..b73116ef9236 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -3614,7 +3614,9 @@ static void __devexit cciss_remove_one(struct pci_dev *pdev) | |||
3614 | } | 3614 | } |
3615 | } | 3615 | } |
3616 | 3616 | ||
3617 | #ifdef CONFIG_CISS_SCSI_TAPE | ||
3617 | cciss_unregister_scsi(i); /* unhook from SCSI subsystem */ | 3618 | cciss_unregister_scsi(i); /* unhook from SCSI subsystem */ |
3619 | #endif | ||
3618 | 3620 | ||
3619 | cciss_shutdown(pdev); | 3621 | cciss_shutdown(pdev); |
3620 | 3622 | ||