From patchwork Wed Aug 20 19:12:54 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Shtylyov X-Patchwork-Id: 4753381 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id EA5CAC0338 for ; Wed, 20 Aug 2014 19:13:02 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 1F7BD2015A for ; Wed, 20 Aug 2014 19:13:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 286A3200EC for ; Wed, 20 Aug 2014 19:13:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752519AbaHTTM7 (ORCPT ); Wed, 20 Aug 2014 15:12:59 -0400 Received: from mail-lb0-f171.google.com ([209.85.217.171]:33538 "EHLO mail-lb0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751280AbaHTTM6 (ORCPT ); Wed, 20 Aug 2014 15:12:58 -0400 Received: by mail-lb0-f171.google.com with SMTP id l4so7241937lbv.30 for ; Wed, 20 Aug 2014 12:12:57 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:mime-version:content-transfer-encoding:content-type; bh=LozH7F6Q3JglFiwtQmetseUtT0I0ht+/rk6r668NtIw=; b=X3vKpr4BkvcnXQv7mxq7Rb5qBIfX/1qPt5SlxloIHWFafGxji3EfrlqYKrycw7nUtk gI4BDM66067GLc9Rx8qTWiFH5K9EJSTEynJ9zVzNoEefTH9GX+P24fHKDaLb5PXu5ZE4 z7vUTKKrZwhkY+xRrz6qpg91UxJLgPsVqeJS33JkQeh7gkgYqOJcegNR3EDQBSevqjWU eWtQaCqh8calTcuRe1r2aSjQDAJLnWeO7f25fM7KGRK8HRuy+hiY3jYGibVs/ziZ0YL+ 5Y8EE473dr+ad1EzyKwHuj5v0wMUaSmAh+vg32ZXNFh9CR6j28vwG+MlTjN0yB8e/Sx6 Kb/A== X-Gm-Message-State: ALoCoQkjMz7fcqB+jQLct81Fl137eiiAB6btjpDBvvUY7hyDBmtM4bQhnHIGjDzsV8Tn3w0JbwKX X-Received: by 10.152.87.97 with SMTP id w1mr4650403laz.92.1408561977190; Wed, 20 Aug 2014 12:12:57 -0700 (PDT) Received: from wasted.cogentembedded.com (ppp30-168.pppoe.mtu-net.ru. [81.195.30.168]) by mx.google.com with ESMTPSA id d7sm14911096lah.46.2014.08.20.12.12.55 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 20 Aug 2014 12:12:56 -0700 (PDT) From: Sergei Shtylyov To: g.liakhovetski@gmx.de, m.chehab@samsung.com, linux-media@vger.kernel.org Cc: linux-sh@vger.kernel.org Subject: [PATCH resend] rcar_vin: fix error message in rcar_vin_get_formats() Date: Wed, 20 Aug 2014 23:12:54 +0400 Message-ID: <1487353.2gPEFjuLHa@wasted.cogentembedded.com> Organization: Cogent Embedded Inc. User-Agent: KMail/4.13.3 (Linux/3.15.10-200.fc20.x86_64; KDE/4.13.3; x86_64; ; ) MIME-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Spam-Status: No, score=-7.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The dev_err() call is supposed to output x in decimal but one of the format specifiers is "%x" instead of "%u" (most probably due to a typo). Signed-off-by: Sergei Shtylyov --- The patch is against the 'media_tree.git' repo's 'fixes' branch. Resending with Mauro's current address (again)... drivers/media/platform/soc_camera/rcar_vin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 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 Index: media_tree/drivers/media/platform/soc_camera/rcar_vin.c =================================================================== --- media_tree.orig/drivers/media/platform/soc_camera/rcar_vin.c +++ media_tree/drivers/media/platform/soc_camera/rcar_vin.c @@ -981,7 +981,7 @@ static int rcar_vin_get_formats(struct s if (shift == 3) { dev_err(dev, - "Failed to configure the client below %ux%x\n", + "Failed to configure the client below %ux%u\n", mf.width, mf.height); return -EIO; }