Commit b8fca1c7 authored by Jens Axboe's avatar Jens Axboe Committed by Jens Axboe

[PATCH] ide-cd: quiet down GPCMD_READ_CDVD_CAPACITY failure

Some drives like to throw a:

ATAPI device hdc:
  Error: Not ready -- (Sense key=0x02)
  Incompatible medium installed -- (asc=0x30, ascq=0x00)
  The failed "Read Cd/Dvd Capacity" packet command was:
  "25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "

warning on incompatible media, so quiet down this error.
Signed-off-by: default avatarJens Axboe <axboe@suse.de>
parent f68110fc
...@@ -2143,6 +2143,7 @@ static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity, ...@@ -2143,6 +2143,7 @@ static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
req.cmd[0] = GPCMD_READ_CDVD_CAPACITY; req.cmd[0] = GPCMD_READ_CDVD_CAPACITY;
req.data = (char *)&capbuf; req.data = (char *)&capbuf;
req.data_len = sizeof(capbuf); req.data_len = sizeof(capbuf);
req.flags |= REQ_QUIET;
stat = cdrom_queue_packet_command(drive, &req); stat = cdrom_queue_packet_command(drive, &req);
if (stat == 0) { if (stat == 0) {
......
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