[ide] remove stale comment from ide-proc.c

ide-default driver was added long time ago.
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent ba4a4d6a
......@@ -360,27 +360,14 @@ static int proc_ide_read_identify
int err = 0;
len = sprintf(page, "\n");
if (drive)
{
if (drive) {
unsigned short *val = (unsigned short *) page;
/*
* The current code can't handle a driverless
* identify query taskfile. Now the right fix is
* to add a 'default' driver but that is a bit
* more work.
*
* FIXME: this has to be fixed for hotswap devices
*/
if(DRIVER(drive))
err = taskfile_lib_get_identify(drive, page);
else /* This relies on the ID changes */
val = (unsigned short *)drive->id;
if(!err)
{
BUG_ON(!drive->driver);
err = taskfile_lib_get_identify(drive, page);
if (!err) {
char *out = ((char *)page) + (SECTOR_WORDS * 4);
page = out;
do {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment