diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-03-24 04:00:57 -0500 |
---|---|---|
committer | Jens Axboe <axboe@nelson.home.kernel.dk> | 2006-03-27 02:29:03 -0500 |
commit | 89a7689e5c039090d99cbdc3625252c3dee50f7f (patch) | |
tree | 897b1b7ec9c779434eea9027f23e8355471b59b7 | |
parent | 837c7878771c15ed8d85ecf814ece7fcb4551b46 (diff) |
[PATCH] unused label in drivers/block/cciss.
this patch removes a warning about an unused label, by
moving the label into the ifdef.
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Jens Axboe <axboe@suse.de>
-rw-r--r-- | drivers/block/cciss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 168da0c9ed3d..1b0fd31c57c3 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -2727,9 +2727,9 @@ static void __devinit cciss_interrupt_mode(ctlr_info_t *c, struct pci_dev *pdev, | |||
2727 | return; | 2727 | return; |
2728 | } | 2728 | } |
2729 | } | 2729 | } |
2730 | default_int_mode: | ||
2730 | #endif /* CONFIG_PCI_MSI */ | 2731 | #endif /* CONFIG_PCI_MSI */ |
2731 | /* if we get here we're going to use the default interrupt mode */ | 2732 | /* if we get here we're going to use the default interrupt mode */ |
2732 | default_int_mode: | ||
2733 | c->intr[SIMPLE_MODE_INT] = pdev->irq; | 2733 | c->intr[SIMPLE_MODE_INT] = pdev->irq; |
2734 | return; | 2734 | return; |
2735 | } | 2735 | } |