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: 27167 Received: from mail.tu-berlin.de ([130.149.7.33]) by www.linuxtv.org with esmtp (Exim 4.72) (envelope-from ) id 1XtpXh-0007QC-SS; Thu, 27 Nov 2014 04:14:53 +0100 X-tubIT-Incoming-IP: 209.132.180.67 Received: from vger.kernel.org ([209.132.180.67]) by mail.tu-berlin.de (exim-4.72/mailfrontend-8) with esmtp id 1XtpXf-0000wI-kB; Thu, 27 Nov 2014 04:14:53 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753806AbaK0DOt (ORCPT + 1 other); 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-PMX-Version: 6.0.0.2142326, Antispam-Engine: 2.7.2.2107409, Antispam-Data: 2014.11.27.30022 X-PMX-Spam: Gauge=IIIIIIIII, Probability=9%, Report=' MULTIPLE_RCPTS 0.1, HTML_00_01 0.05, HTML_00_10 0.05, MSGID_ADDED_BY_MTA 0.05, BODYTEXTP_SIZE_3000_LESS 0, BODY_SIZE_1000_LESS 0, BODY_SIZE_2000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_7000_LESS 0, BODY_SIZE_900_999 0, URI_ENDS_IN_HTML 0, __ANY_URI 0, __CP_MEDIA_BODY 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __DATE_TZ_HK 0, __HAS_FROM 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __HAS_X_MAILING_LIST 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __MULTIPLE_RCPTS_CC_X2 0, __SANE_MSGID 0, __SUBJ_ALPHA_END 0, __TO_MALFORMED_2 0, __TO_NO_NAME 0, __URI_NO_WWW 0, __URI_NS ' 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