From patchwork Wed Nov 13 21:15:25 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christopher Heiny X-Patchwork-Id: 3179791 Return-Path: X-Original-To: patchwork-linux-input@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 10F2DC045B for ; Wed, 13 Nov 2013 22:02:55 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 12949208F8 for ; Wed, 13 Nov 2013 22:02:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 03C29208DF for ; Wed, 13 Nov 2013 22:02:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751932Ab3KMWCt (ORCPT ); Wed, 13 Nov 2013 17:02:49 -0500 Received: from [192.147.44.15] ([192.147.44.15]:12120 "EHLO localhost.localdomain" rhost-flags-FAIL-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1751931Ab3KMWCs (ORCPT ); Wed, 13 Nov 2013 17:02:48 -0500 X-Greylist: delayed 2819 seconds by postgrey-1.27 at vger.kernel.org; Wed, 13 Nov 2013 17:02:48 EST Received: from brontomerus.synaptics-inc.local (localhost [127.0.0.1]) by localhost.localdomain (8.14.7/8.14.7) with ESMTP id rADLFhhL029416; Wed, 13 Nov 2013 13:15:43 -0800 From: Christopher Heiny To: Dmitry Torokhov Cc: Linux Input , Christopher Heiny , Andrew Duggan , Vincent Huang , Vivian Ly , Daniel Rosenberg Subject: [PATCH] input synaptics-rmi4: Fix camel case in comments. Date: Wed, 13 Nov 2013 13:15:25 -0800 Message-Id: <1384377325-29380-1-git-send-email-cheiny@synaptics.com> X-Mailer: git-send-email 1.8.1.4 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Spam-Status: No, score=-6.9 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 Trivial change to make variable names in a comment match those in the code. Signed-off-by: Christopher Heiny Cc: Dmitry Torokhov --- include/linux/rmi.h | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/include/linux/rmi.h b/include/linux/rmi.h index 01f2f13..dc94dc1 100644 --- a/include/linux/rmi.h +++ b/include/linux/rmi.h @@ -9,8 +9,19 @@ #ifndef _RMI_H #define _RMI_H - +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include +#include +#include enum rmi_attn_polarity { RMI_ATTN_ACTIVE_LOW = 0, @@ -22,16 +33,16 @@ enum rmi_attn_polarity { * @swap_axes: set to TRUE if desired to swap x- and y-axis * @flip_x: set to TRUE if desired to flip direction on x-axis * @flip_y: set to TRUE if desired to flip direction on y-axis - * @clip_X_low - reported X coordinates below this setting will be clipped to + * @clip_x_low - reported X coordinates below this setting will be clipped to * the specified value - * @clip_X_high - reported X coordinates above this setting will be clipped to + * @clip_x_high - reported X coordinates above this setting will be clipped to * the specified value - * @clip_Y_low - reported Y coordinates below this setting will be clipped to + * @clip_y_low - reported Y coordinates below this setting will be clipped to * the specified value - * @clip_Y_high - reported Y coordinates above this setting will be clipped to + * @clip_y_high - reported Y coordinates above this setting will be clipped to * the specified value - * @offset_X - this value will be added to all reported X coordinates - * @offset_Y - this value will be added to all reported Y coordinates + * @offset_x - this value will be added to all reported X coordinates + * @offset_y - this value will be added to all reported Y coordinates * @rel_report_enabled - if set to true, the relative reporting will be * automatically enabled for this sensor. */