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

Commit 61a34937 authored by Peter Osterlund's avatar Peter Osterlund Committed by Linus Torvalds
Browse files

[PATCH] pktcdvd: Don't spam the kernel log when nothing is wrong



Change some messages that don't indicate an error so that they are only
printed when debugging is enabled.

Signed-off-by: default avatarPeter Osterlund <petero2@telia.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent f78cf0dc
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -1548,7 +1548,7 @@ static int pkt_good_disc(struct pktcdvd_device *pd, disc_information *di)
		case 0x12: /* DVD-RAM */
		case 0x12: /* DVD-RAM */
			return 0;
			return 0;
		default:
		default:
			printk("pktcdvd: Wrong disc profile (%x)\n", pd->mmc3_profile);
			VPRINTK("pktcdvd: Wrong disc profile (%x)\n", pd->mmc3_profile);
			return 1;
			return 1;
	}
	}


@@ -1894,7 +1894,7 @@ static int pkt_open_write(struct pktcdvd_device *pd)
	unsigned int write_speed, media_write_speed, read_speed;
	unsigned int write_speed, media_write_speed, read_speed;


	if ((ret = pkt_probe_settings(pd))) {
	if ((ret = pkt_probe_settings(pd))) {
		DPRINTK("pktcdvd: %s failed probe\n", pd->name);
		VPRINTK("pktcdvd: %s failed probe\n", pd->name);
		return -EIO;
		return -EIO;
	}
	}


@@ -2440,7 +2440,7 @@ static int pkt_ioctl(struct inode *inode, struct file *file, unsigned int cmd, u
		return blkdev_ioctl(pd->bdev->bd_inode, file, cmd, arg);
		return blkdev_ioctl(pd->bdev->bd_inode, file, cmd, arg);


	default:
	default:
		printk("pktcdvd: Unknown ioctl for %s (%x)\n", pd->name, cmd);
		VPRINTK("pktcdvd: Unknown ioctl for %s (%x)\n", pd->name, cmd);
		return -ENOTTY;
		return -ENOTTY;
	}
	}