Messages in this thread Patch in this message |  | | | Date | Thu, 21 Apr 2005 17:27:08 +0200 | | From | Andreas Steinmetz <> | | Subject | Re: Linux 2.6.12-rc3: Oops on IDE flash disk eject |
| |
The following patch fixes the Oops though I don't know if this is the correct solution.
--- linux-2.6.12-rc3/drivers/ide/ide.c.ast +++ linux-2.6.12-rc3/drivers/ide/ide.c @@ -2082,7 +2082,8 @@ static int ide_drive_remove(struct device * dev) { ide_drive_t * drive = container_of(dev,ide_drive_t,gendev); - DRIVER(drive)->cleanup(drive); + if(DRIVER(drive)) + DRIVER(drive)->cleanup(drive); return 0; }
-- Andreas Steinmetz SPAMmers use robotrap@domdv.de - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |