mirror of https://gitee.com/openkylin/linux.git
[PATCH] pktcdvd: Remove useless printk statements
Writing the detected disc type in the kernel log is not useful during normal use of the driver, so remove the printk statements. Signed-off-by: Peter Osterlund <petero2@telia.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
7c613d5933
commit
3b4828047d
|
@ -1597,20 +1597,6 @@ static int pkt_probe_settings(struct pktcdvd_device *pd)
|
||||||
if (!pkt_writable_disc(pd, &di))
|
if (!pkt_writable_disc(pd, &di))
|
||||||
return -ENXIO;
|
return -ENXIO;
|
||||||
|
|
||||||
switch (pd->mmc3_profile) {
|
|
||||||
case 0x1a: /* DVD+RW */
|
|
||||||
printk("pktcdvd: inserted media is DVD+RW\n");
|
|
||||||
break;
|
|
||||||
case 0x13: /* DVD-RW */
|
|
||||||
printk("pktcdvd: inserted media is DVD-RW\n");
|
|
||||||
break;
|
|
||||||
case 0x12: /* DVD-RAM */
|
|
||||||
printk("pktcdvd: inserted media is DVD-RAM\n");
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
printk("pktcdvd: inserted media is CD-R%s\n", di.erasable ? "W" : "");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
pd->type = di.erasable ? PACKET_CDRW : PACKET_CDR;
|
pd->type = di.erasable ? PACKET_CDRW : PACKET_CDR;
|
||||||
|
|
||||||
track = 1; /* (di.last_track_msb << 8) | di.last_track_lsb; */
|
track = 1; /* (di.last_track_msb << 8) | di.last_track_lsb; */
|
||||||
|
|
Loading…
Reference in New Issue