From patchwork Sat Jan 23 13:44:34 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?TsOpbWV0aCBNw6FydG9u?= X-Patchwork-Id: 2509 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Sat, 23 Jan 2010 13:44:39 +0000 Received: from bombadil.infradead.org [18.85.46.34] by pedra with IMAP (fetchmail-6.3.6) for (single-drop); Sat, 23 Jan 2010 11:47:08 -0200 (BRST) Received: from vger.kernel.org ([209.132.180.67]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1NYgI3-0002Ia-D5; Sat, 23 Jan 2010 13:44:39 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755509Ab0AWNoi (ORCPT + 1 other); Sat, 23 Jan 2010 08:44:38 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755526Ab0AWNoi (ORCPT ); Sat, 23 Jan 2010 08:44:38 -0500 Received: from mail02d.mail.t-online.hu ([84.2.42.7]:59813 "EHLO mail02d.mail.t-online.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755028Ab0AWNoi (ORCPT ); Sat, 23 Jan 2010 08:44:38 -0500 Received: from [192.168.1.67] (dsl51B659B2.pool.t-online.hu [81.182.89.178]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail02d.mail.t-online.hu (Postfix) with ESMTPSA id 0064C758B0E; Sat, 23 Jan 2010 14:42:38 +0100 (CET) Message-ID: <4B5AFD42.6080001@freemail.hu> Date: Sat, 23 Jan 2010 14:44:34 +0100 From: =?UTF-8?B?TsOpbWV0aCBNw6FydG9u?= User-Agent: Mozilla/5.0 (X11; U; Linux i686; hu-HU; rv:1.8.1.21) Gecko/20090402 SeaMonkey/1.1.16 MIME-Version: 1.0 To: Janne Grunau CC: V4L Mailing List Subject: [PATCH] hdpvr-video: cleanup signedness X-DCC-mail.t-online.hu-Metrics: mail02d.mail.t-online.hu 32721; Body=2 Fuz1=2 Fuz2=2 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Márton Németh The fifth parameter of usb_bulk_msg() is a pointer to signed (see ) so also call this function with pointer to signed. This will remove the following sparse warning (see "make C=1"): * warning: incorrect type in argument 5 (different signedness) expected int *actual_length got unsigned int * Signed-off-by: Márton Németh --- -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff -r 2a50a0a1c951 linux/drivers/media/video/hdpvr/hdpvr-video.c --- a/linux/drivers/media/video/hdpvr/hdpvr-video.c Sat Jan 23 00:14:32 2010 -0200 +++ b/linux/drivers/media/video/hdpvr/hdpvr-video.c Sat Jan 23 11:43:17 2010 +0100 @@ -302,7 +302,8 @@ /* function expects dev->io_mutex to be hold by caller */ static int hdpvr_stop_streaming(struct hdpvr_device *dev) { - uint actual_length, c = 0; + int actual_length; + uint c = 0; u8 *buf; if (dev->status == STATUS_IDLE)