From patchwork Thu Nov 27 03:15:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Josh Wu X-Patchwork-Id: 5391301 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 9381F9F319 for ; Thu, 27 Nov 2014 03:14:53 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 993F4201E4 for ; Thu, 27 Nov 2014 03:14:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 39E05201C0 for ; Thu, 27 Nov 2014 03:14:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753806AbaK0DOt (ORCPT ); Wed, 26 Nov 2014 22:14:49 -0500 Received: from nasmtp01.atmel.com ([192.199.1.246]:61443 "EHLO DVREDG02.corp.atmel.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753829AbaK0DOs (ORCPT ); Wed, 26 Nov 2014 22:14:48 -0500 Received: from apsmtp01.atmel.com (10.168.254.30) by DVREDG02.corp.atmel.com (10.42.103.31) with Microsoft SMTP Server (TLS) id 14.2.347.0; Wed, 26 Nov 2014 20:14:42 -0700 Received: from melon.corp.atmel.com (10.168.254.13) by apsmtp01.corp.atmel.com (10.168.254.30) with Microsoft SMTP Server id 14.2.347.0; Thu, 27 Nov 2014 11:15:47 +0800 From: Josh Wu To: , CC: , , , Josh Wu Subject: [PATCH] media: v4l2-image-sizes.h: correct the SVGA height definition Date: Thu, 27 Nov 2014 11:15:01 +0800 Message-ID: <1417058101-2798-1-git-send-email-josh.wu@atmel.com> X-Mailer: git-send-email 1.9.1 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=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable 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 SVGA height should be 600 not 680. Reported-by: Sylwester Nawrocki Signed-off-by: Josh Wu --- Hi, Mauro There a typo in my previous patch, so this patch is the fix for that. Sorry for the incovenience. Best Regards, Josh Wu include/media/v4l2-image-sizes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/media/v4l2-image-sizes.h b/include/media/v4l2-image-sizes.h index c70c917..a07d7a6 100644 --- a/include/media/v4l2-image-sizes.h +++ b/include/media/v4l2-image-sizes.h @@ -26,7 +26,7 @@ #define QVGA_HEIGHT 240 #define SVGA_WIDTH 800 -#define SVGA_HEIGHT 680 +#define SVGA_HEIGHT 600 #define SXGA_WIDTH 1280 #define SXGA_HEIGHT 1024