mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
ide: mark "hdx=remap" and "hdx=remap63" kernel parameters as obsoleted
Mark "hdx=remap" and "hdx=remap63" kernel parameters as obsoleted (they are layering violation and should be dealt with in the same way as done by libata - device-mapper should be used instead). Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
15220d9b5a
commit
d708c40da8
2 changed files with 2 additions and 7 deletions
|
@ -228,11 +228,6 @@ Summary of ide driver parameters for kernel command line
|
||||||
|
|
||||||
"hdx=cyl,head,sect" : disk drive is present, with specified geometry
|
"hdx=cyl,head,sect" : disk drive is present, with specified geometry
|
||||||
|
|
||||||
"hdx=remap" : remap access of sector 0 to sector 1 (for EZDrive)
|
|
||||||
|
|
||||||
"hdx=remap63" : remap the drive: add 63 to all sector numbers
|
|
||||||
(for DM OnTrack)
|
|
||||||
|
|
||||||
"hdx=autotune" : driver will attempt to tune interface speed
|
"hdx=autotune" : driver will attempt to tune interface speed
|
||||||
to the fastest PIO mode supported,
|
to the fastest PIO mode supported,
|
||||||
if possible for this drive only.
|
if possible for this drive only.
|
||||||
|
|
|
@ -1290,10 +1290,10 @@ static int __init ide_setup(char *s)
|
||||||
goto done;
|
goto done;
|
||||||
case -12: /* "remap" */
|
case -12: /* "remap" */
|
||||||
drive->remap_0_to_1 = 1;
|
drive->remap_0_to_1 = 1;
|
||||||
goto done;
|
goto obsolete_option;
|
||||||
case -13: /* "remap63" */
|
case -13: /* "remap63" */
|
||||||
drive->sect0 = 63;
|
drive->sect0 = 63;
|
||||||
goto done;
|
goto obsolete_option;
|
||||||
case -14: /* "scsi" */
|
case -14: /* "scsi" */
|
||||||
drive->scsi = 1;
|
drive->scsi = 1;
|
||||||
goto obsolete_option;
|
goto obsolete_option;
|
||||||
|
|
Loading…
Reference in a new issue