diff options
author | Kashyap, Desai | 2009-10-07 07:56:54 +0200 |
---|---|---|
committer | James Bottomley | 2009-10-29 18:03:23 +0100 |
commit | e39e145dfb78d4e20d89139d2576306b4279c126 (patch) | |
tree | 95852dcb8c4e65ac8c889da9bd2bd4d59af5abb1 /drivers | |
parent | [SCSI] megaraid_sas: Update version number and documentation (diff) | |
download | kernel-qcow2-linux-e39e145dfb78d4e20d89139d2576306b4279c126.tar.gz kernel-qcow2-linux-e39e145dfb78d4e20d89139d2576306b4279c126.tar.xz kernel-qcow2-linux-e39e145dfb78d4e20d89139d2576306b4279c126.zip |
[SCSI] mptctl : Remove printk which floods unnecessary messages to var/log/message
Signed-off-by: Kashyap Desai <kashyap.desai@lsi.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/message/fusion/mptctl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/message/fusion/mptctl.c b/drivers/message/fusion/mptctl.c index 9b2e2198aee9..352acd05c46b 100644 --- a/drivers/message/fusion/mptctl.c +++ b/drivers/message/fusion/mptctl.c @@ -621,11 +621,8 @@ __mptctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg) */ iocnumX = khdr.iocnum & 0xFF; if (((iocnum = mpt_verify_adapter(iocnumX, &iocp)) < 0) || - (iocp == NULL)) { - printk(KERN_DEBUG MYNAM "%s::mptctl_ioctl() @%d - ioc%d not found!\n", - __FILE__, __LINE__, iocnumX); + (iocp == NULL)) return -ENODEV; - } if (!iocp->active) { printk(KERN_DEBUG MYNAM "%s::mptctl_ioctl() @%d - Controller disabled.\n", |