aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/ide-probe.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-10-10 16:39:23 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-10-10 16:39:23 -0400
commit7c199a5496d0579d388636ee34a954e2e566d2fb (patch)
tree5260f26313dae43aa2184548122b5cec7c4ff3e5 /drivers/ide/ide-probe.c
parentb163f46d5ecf48d883ce156e5e5a21a1a9a125c7 (diff)
ide: remove no longer needed BUG_ON()-s from init_irq()
init_irq() is now called only during initial host registration so these BUG_ON()-s are no loner needed (+ the last one was done too late anyway). Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-probe.c')
-rw-r--r--drivers/ide/ide-probe.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c
index ef773384aaa9..a27c0398b153 100644
--- a/drivers/ide/ide-probe.c
+++ b/drivers/ide/ide-probe.c
@@ -1031,11 +1031,6 @@ static int init_irq (ide_hwif_t *hwif)
1031 ide_hwgroup_t *hwgroup; 1031 ide_hwgroup_t *hwgroup;
1032 ide_hwif_t *match = NULL; 1032 ide_hwif_t *match = NULL;
1033 1033
1034
1035 BUG_ON(in_interrupt());
1036 BUG_ON(irqs_disabled());
1037 BUG_ON(hwif == NULL);
1038
1039 mutex_lock(&ide_cfg_mtx); 1034 mutex_lock(&ide_cfg_mtx);
1040 hwif->hwgroup = NULL; 1035 hwif->hwgroup = NULL;
1041#if MAX_HWIFS > 1 1036#if MAX_HWIFS > 1