From patchwork Thu Apr 22 16:05:32 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ricardo Maraschini X-Patchwork-Id: 94156 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o3MG5tWI024177 for ; Thu, 22 Apr 2010 16:05:56 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755974Ab0DVQFy (ORCPT ); Thu, 22 Apr 2010 12:05:54 -0400 Received: from mail-pv0-f174.google.com ([74.125.83.174]:52609 "EHLO mail-pv0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755913Ab0DVQFx (ORCPT ); Thu, 22 Apr 2010 12:05:53 -0400 Received: by pvh1 with SMTP id 1so504468pvh.19 for ; Thu, 22 Apr 2010 09:05:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=Njbwtr9YMX1w03jJRM+iHVHfRP25yLVUTHuo9BOSfyQ=; b=t/pjl5seOAMStSafbIsOADQG8Hb3aW0XyNX0m9hKw8NPU3bK8h7O6SsgbZVcx3k4yS GVh9kLeKguYgJE+opeJOVsaKC6kf6o8VIObX1bSJwFGO9M5rhpMvi0aAteBn1jrcfgq5 L8iIJEc5PfVqmV8oSf6VM775VnznlW/1v2buE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=kLM6pDjmjw3K7XgiszfZScZQT0POI7q5SjJY9P0JMsmo6lCWu0E/PsJLj25QPF5LlN CkNmOhA4xnfO7J8Dl3wxxDBY6oqNPN2rZ2mK9jQN4eDXcy8ANrv9VTOcaf9xtRMMHlPJ eBg8ZGmz0r2rCBd1mv4JB9/6N9LeAKDBnnJ5w= Received: by 10.140.248.7 with SMTP id v7mr3165424rvh.252.1271952352325; Thu, 22 Apr 2010 09:05:52 -0700 (PDT) Received: from [192.168.10.175] ([200.175.93.74]) by mx.google.com with ESMTPS id 20sm45035qyk.0.2010.04.22.09.05.50 (version=SSLv3 cipher=RC4-MD5); Thu, 22 Apr 2010 09:05:51 -0700 (PDT) Message-ID: <4BD073CC.8080303@gmail.com> Date: Thu, 22 Apr 2010 13:05:32 -0300 From: Ricardo Maraschini User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.8) Gecko/20100301 Fedora/3.0.3-1.fc12 Thunderbird/3.0.3 MIME-Version: 1.0 To: linux-media@vger.kernel.org Subject: [PATCH] cx25821-video-upstream.c: Added severity to printk calls Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 22 Apr 2010 16:06:00 +0000 (UTC) --- a/linux/drivers/staging/cx25821/cx25821-video-upstream.c Sun Apr 18 11:12:11 2010 -0300 +++ b/linux/drivers/staging/cx25821/cx25821-video-upstream.c Tue Apr 20 11:21:17 2010 -0300 @@ -257,7 +257,7 @@ if (!dev->_is_running) { printk - ("cx25821: No video file is currently running so return!\n"); + (KERN_INFO "cx25821: No video file is currently running so return!\n"); return; } /* Disable RISC interrupts */ @@ -345,19 +345,19 @@ if (IS_ERR(myfile)) { const int open_errno = -PTR_ERR(myfile); - printk("%s(): ERROR opening file(%s) with errno = %d!\n", + printk(KERN_ERR "%s(): ERROR opening file(%s) with errno = %d!\n", __func__, dev->_filename, open_errno); return PTR_ERR(myfile); } else { if (!(myfile->f_op)) { - printk("%s: File has no file operations registered!", + printk(KERN_ERR "%s: File has no file operations registered!", __func__); filp_close(myfile, NULL); return -EIO; } if (!myfile->f_op->read) { - printk("%s: File has no READ operations registered!", + printk(KERN_ERR "%s: File has no READ operations registered!", __func__); filp_close(myfile, NULL); return -EIO; @@ -410,7 +410,7 @@ container_of(work, struct cx25821_dev, _irq_work_entry); if (!dev) { - printk("ERROR %s(): since container_of(work_struct) FAILED!\n", + printk(KERN_ERR "ERROR %s(): since container_of(work_struct) FAILED!\n", __func__); return; } @@ -436,12 +436,12 @@ if (IS_ERR(myfile)) { const int open_errno = -PTR_ERR(myfile); - printk("%s(): ERROR opening file(%s) with errno = %d!\n", + printk(KERN_ERR "%s(): ERROR opening file(%s) with errno = %d!\n", __func__, dev->_filename, open_errno); return PTR_ERR(myfile); } else { if (!(myfile->f_op)) { - printk("%s: File has no file operations registered!", + printk(KERN_ERR "%s: File has no file operations registered!", __func__); filp_close(myfile, NULL); return -EIO; @@ -449,7 +449,7 @@ if (!myfile->f_op->read) { printk - ("%s: File has no READ operations registered! Returning.", + (KERN_ERR "%s: File has no READ operations registered! Returning.", __func__); filp_close(myfile, NULL); return -EIO; @@ -525,7 +525,7 @@ if (!dev->_dma_virt_addr) { printk - ("cx25821: FAILED to allocate memory for Risc buffer! Returning.\n"); + (KERN_ERR "cx25821: FAILED to allocate memory for Risc buffer! Returning.\n"); return -ENOMEM; } @@ -546,7 +546,7 @@ if (!dev->_data_buf_virt_addr) { printk - ("cx25821: FAILED to allocate memory for data buffer! Returning.\n"); + (KERN_ERR "cx25821: FAILED to allocate memory for data buffer! Returning.\n"); return -ENOMEM; } @@ -641,20 +641,20 @@ } else { if (status & FLD_VID_SRC_UF) printk - ("%s: Video Received Underflow Error Interrupt!\n", + (KERN_ERR "%s: Video Received Underflow Error Interrupt!\n", __func__); if (status & FLD_VID_SRC_SYNC) - printk("%s: Video Received Sync Error Interrupt!\n", + printk(KERN_ERR "%s: Video Received Sync Error Interrupt!\n", __func__); if (status & FLD_VID_SRC_OPC_ERR) - printk("%s: Video Received OpCode Error Interrupt!\n", + printk(KERN_ERR "%s: Video Received OpCode Error Interrupt!\n", __func__); } if (dev->_file_status == END_OF_FILE) { - printk("cx25821: EOF Channel 1 Framecount = %d\n", + printk(KERN_ERR "cx25821: EOF Channel 1 Framecount = %d\n", dev->_frame_count); return -1; } @@ -794,7 +794,7 @@ int str_length = 0; if (dev->_is_running) { - printk("Video Channel is still running so return!\n"); + printk(KERN_INFO "Video Channel is still running so return!\n"); return 0; } @@ -806,7 +806,7 @@ if (!dev->_irq_queues) { printk - ("cx25821: create_singlethread_workqueue() for Video FAILED!\n"); + (KERN_ERR "cx25821: create_singlethread_workqueue() for Video FAILED!\n"); return -ENOMEM; } /* 656/VIP SRC Upstream Channel I & J and 7 - Host Bus Interface for