From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936189AbbCDIaz (ORCPT ); Wed, 4 Mar 2015 03:30:55 -0500 Received: from mail-bl2on0142.outbound.protection.outlook.com ([65.55.169.142]:49897 "EHLO na01-bl2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S936176AbbCDIav (ORCPT ); Wed, 4 Mar 2015 03:30:51 -0500 From: Yannick Guerrini To: CC: , , , Yannick Guerrini Subject: [PATCH] drm: Fix trivial typos in comments Date: Wed, 4 Mar 2015 09:30:09 +0100 Message-ID: <1425457809-6888-1-git-send-email-yguerrini@tomshardware.fr> X-Mailer: git-send-email 1.9.5.msysgit.0 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [109.28.183.249] X-ClientProxiedBy: BY2PR03CA063.namprd03.prod.outlook.com (10.141.249.36) To DM2PR0201MB0589.namprd02.prod.outlook.com (25.160.94.147) Authentication-Results: linux.ie; dkim=none (message not signed) header.d=none; X-Microsoft-Antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:DM2PR0201MB0589; X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-Test: UriScan:; X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:(601004)(5005006);SRVR:DM2PR0201MB0589;BCL:0;PCL:0;RULEID:;SRVR:DM2PR0201MB0589; X-Forefront-PRVS: 0505147DDB X-Forefront-Antispam-Report: SFV:NSPM;SFS:(10019020)(6069001)(6009001)(62966003)(77156002)(47776003)(66066001)(50986999)(87976001)(122386002)(33646002)(50226001)(110136001)(50466002)(74482002)(2351001)(19580395003)(19580405001)(40100003)(92566002)(575784001)(48376002)(46102003)(42186005)(229853001)(36756003)(42882002);DIR:OUT;SFP:1102;SCL:1;SRVR:DM2PR0201MB0589;H:localhost.localdomain;FPR:;SPF:None;MLV:sfv;LANG:en; X-OriginatorOrg: TOMSHARDWARE.FR X-MS-Exchange-CrossTenant-OriginalArrivalTime: 04 Mar 2015 08:30:46.8545 (UTC) X-MS-Exchange-CrossTenant-FromEntityHeader: Hosted X-MS-Exchange-Transport-CrossTenantHeadersStamped: DM2PR0201MB0589 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Change 'pixes' to 'pixels' Change 'enabel' to 'enable' Change 'enabeling' to 'enabling' Signed-off-by: Yannick Guerrini --- drivers/gpu/drm/drm_modes.c | 4 ++-- drivers/gpu/drm/i2c/adv7511.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c index 487d0e3..2cca85f 100644 --- a/drivers/gpu/drm/drm_modes.c +++ b/drivers/gpu/drm/drm_modes.c @@ -278,7 +278,7 @@ struct drm_display_mode *drm_cvt_mode(struct drm_device *dev, int hdisplay, hblank = drm_mode->hdisplay * hblank_percentage / (100 * HV_FACTOR - hblank_percentage); hblank -= hblank % (2 * CVT_H_GRANULARITY); - /* 14. find the total pixes per line */ + /* 14. find the total pixels per line */ drm_mode->htotal = drm_mode->hdisplay + hblank; drm_mode->hsync_end = drm_mode->hdisplay + hblank / 2; drm_mode->hsync_start = drm_mode->hsync_end - @@ -1209,7 +1209,7 @@ EXPORT_SYMBOL(drm_mode_connector_list_update); * x[M][R][-][@][i][m][eDd] * * The intermediate drm_cmdline_mode structure is required to store additional - * options from the command line modline like the force-enabel/disable flag. + * options from the command line modline like the force-enable/disable flag. * * Returns: * True if a valid modeline has been parsed, false otherwise. diff --git a/drivers/gpu/drm/i2c/adv7511.c b/drivers/gpu/drm/i2c/adv7511.c index fa140e0..61aa824 100644 --- a/drivers/gpu/drm/i2c/adv7511.c +++ b/drivers/gpu/drm/i2c/adv7511.c @@ -573,7 +573,7 @@ static void adv7511_encoder_dpms(struct drm_encoder *encoder, int mode) * goes low the adv7511 is reset and the outputs are disabled * which might cause the monitor to go to standby again. To * avoid this we ignore the HDP pin for the first few seconds - * after enabeling the output. + * after enabling the output. */ regmap_update_bits(adv7511->regmap, ADV7511_REG_POWER2, ADV7511_REG_POWER2_HDP_SRC_MASK, -- 1.9.5.msysgit.0