Commit 991cb26a authored by Borislav Petkov's avatar Borislav Petkov Committed by Bartlomiej Zolnierkiewicz

ide-atapi: add a dev_is_idecd-inline

There should be no functionality change resulting from this patch.
Signed-off-by: default avatarBorislav Petkov <petkovbb@gmail.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 93c164af
...@@ -14,6 +14,12 @@ ...@@ -14,6 +14,12 @@
#define debug_log(fmt, args...) do {} while (0) #define debug_log(fmt, args...) do {} while (0)
#endif #endif
static inline int dev_is_idecd(ide_drive_t *drive)
{
return (drive->media == ide_cdrom || drive->media == ide_optical) &&
!(drive->dev_flags & IDE_DFLAG_SCSI);
}
/* /*
* Check whether we can support a device, * Check whether we can support a device,
* based on the ATAPI IDENTIFY command results. * based on the ATAPI IDENTIFY command results.
...@@ -577,7 +583,7 @@ ide_startstop_t ide_issue_pc(ide_drive_t *drive, unsigned int timeout, ...@@ -577,7 +583,7 @@ ide_startstop_t ide_issue_pc(ide_drive_t *drive, unsigned int timeout,
if (scsi) if (scsi)
tf_flags = 0; tf_flags = 0;
else if (drive->media == ide_cdrom || drive->media == ide_optical) else if (dev_is_idecd(drive))
tf_flags = IDE_TFLAG_OUT_NSECT | IDE_TFLAG_OUT_LBAL; tf_flags = IDE_TFLAG_OUT_NSECT | IDE_TFLAG_OUT_LBAL;
else else
tf_flags = IDE_TFLAG_OUT_DEVICE; tf_flags = IDE_TFLAG_OUT_DEVICE;
......
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