Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a089c66 authored by Bartlomiej Zolnierkiewicz's avatar Bartlomiej Zolnierkiewicz
Browse files

ide-disk: use ata_id_wcache_enabled()



Replace open-coded check by ata_id_wcache_enabled()
(which also checks validity of word 85).

Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent dd8f46f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -889,7 +889,7 @@ static void idedisk_setup(ide_drive_t *drive)
			 drive->bios_cyl, drive->bios_head, drive->bios_sect);

	/* write cache enabled? */
	if ((id[ATA_ID_CSFO] & 1) || (id[ATA_ID_CFS_ENABLE_1] & (1 << 5)))
	if ((id[ATA_ID_CSFO] & 1) || ata_id_wcache_enabled(id))
		drive->wcache = 1;

	write_cache(drive, 1);