Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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: Jens Axboe <axboe@suse.de>

authored by

Jens Axboe and committed by
Jens Axboe
b8fca1c7 f68110fc

+1
+1
drivers/ide/ide-cd.c
··· 2143 2143 req.cmd[0] = GPCMD_READ_CDVD_CAPACITY; 2144 2144 req.data = (char *)&capbuf; 2145 2145 req.data_len = sizeof(capbuf); 2146 + req.flags |= REQ_QUIET; 2146 2147 2147 2148 stat = cdrom_queue_packet_command(drive, &req); 2148 2149 if (stat == 0) {