ide-cd: remove no longer needed 'ignore' module parameter
ide-scsi is gone... Cc: Borislav Petkov <petkovbb@gmail.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
Родитель
1ab6d74516
Коммит
6041e8fba8
|
@ -1942,9 +1942,6 @@ static struct block_device_operations idecd_ops = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* module options */
|
/* module options */
|
||||||
static char *ignore;
|
|
||||||
module_param(ignore, charp, 0400);
|
|
||||||
|
|
||||||
static unsigned long debug_mask;
|
static unsigned long debug_mask;
|
||||||
module_param(debug_mask, ulong, 0644);
|
module_param(debug_mask, ulong, 0644);
|
||||||
|
|
||||||
|
@ -1965,15 +1962,6 @@ static int ide_cd_probe(ide_drive_t *drive)
|
||||||
if (drive->media != ide_cdrom && drive->media != ide_optical)
|
if (drive->media != ide_cdrom && drive->media != ide_optical)
|
||||||
goto failed;
|
goto failed;
|
||||||
|
|
||||||
/* skip drives that we were told to ignore */
|
|
||||||
if (ignore != NULL) {
|
|
||||||
if (strstr(ignore, drive->name)) {
|
|
||||||
printk(KERN_INFO PFX "ignoring drive %s\n",
|
|
||||||
drive->name);
|
|
||||||
goto failed;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
drive->debug_mask = debug_mask;
|
drive->debug_mask = debug_mask;
|
||||||
drive->irq_handler = cdrom_newpc_intr;
|
drive->irq_handler = cdrom_newpc_intr;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче