From patchwork Fri Dec 27 12:03:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3411891 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 70F5CC02DC for ; Fri, 27 Dec 2013 12:06:51 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0293820163 for ; Fri, 27 Dec 2013 12:06:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 077A620161 for ; Fri, 27 Dec 2013 12:06:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754452Ab3L0MGk (ORCPT ); Fri, 27 Dec 2013 07:06:40 -0500 Received: from mail-pa0-f52.google.com ([209.85.220.52]:49020 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752711Ab3L0MGj (ORCPT ); Fri, 27 Dec 2013 07:06:39 -0500 Received: by mail-pa0-f52.google.com with SMTP id ld10so9223957pab.25 for ; Fri, 27 Dec 2013 04:06:39 -0800 (PST) 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; bh=CUvr2Vwt0pncBiQlrpYFyEOSBknpLkQ8UsTVIp4Oo+M=; b=X3C9v2ox4PVKZHjWHaFvnlDqR7xd0Xp74iR1RyXa9cY/4QNl+L2J8HrWUO+/Wh3+Cb tTn2k6JCtHeOm8S7uU+fwQq7lNWFftNU2WmKxHyK/YGNw/9sI5mlkO2MG6jU5HEUBJBU ekOCXgcbR0wxS3dqfLTVQEfTzXpb5xieBeYmIddCkrnF9LqWPFRCzxXtydhoz3zd8kHW QD4C2IrVckVDwNQiKRhUlbpbZaRz3nIn5DFRpHp/3tRZCQp0wcNJmr3EhOL15TYkivWr wR9/dynvbIkfj9W40gc5k9RWPNKsENBQQO22f7h7qIhI1CGMTk8hHF+Ft7lmjckyCZLE NZuQ== X-Gm-Message-State: ALoCoQnqWIIVEpiujBOueOnG4+BbNPe/2Nbqz691uXD0xNbghwxRSumSjpsAw6zcl5CeTCMoBVP5 X-Received: by 10.66.142.107 with SMTP id rv11mr50729805pab.17.1388145999285; Fri, 27 Dec 2013 04:06:39 -0800 (PST) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id nw11sm80709361pab.13.2013.12.27.04.06.36 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 27 Dec 2013 04:06:38 -0800 (PST) From: Sachin Kamat To: linux-input@vger.kernel.org Cc: dmitry.torokhov@gmail.com, dtor@mail.ru, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/2] Input: keypad-ep93xx - Cleanup header file Date: Fri, 27 Dec 2013 17:33:07 +0530 Message-Id: <1388145788-6253-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Spam-Status: No, score=-7.5 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 Commit a3b2924547a7 ("ARM: ep93xx: move platform_data definitions") moved the file to the current location but forgot to remove the pointer to its previous location. Clean it up. While at it also change the header file protection macros appropriately. Signed-off-by: Sachin Kamat --- include/linux/platform_data/keypad-ep93xx.h | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/include/linux/platform_data/keypad-ep93xx.h b/include/linux/platform_data/keypad-ep93xx.h index 1e2f4e97f428..adccee25b162 100644 --- a/include/linux/platform_data/keypad-ep93xx.h +++ b/include/linux/platform_data/keypad-ep93xx.h @@ -1,9 +1,5 @@ -/* - * arch/arm/mach-ep93xx/include/mach/ep93xx_keypad.h - */ - -#ifndef __ASM_ARCH_EP93XX_KEYPAD_H -#define __ASM_ARCH_EP93XX_KEYPAD_H +#ifndef __KEYPAD_EP93XX_H +#define __KEYPAD_EP93XX_H struct matrix_keymap_data; @@ -32,4 +28,4 @@ struct ep93xx_keypad_platform_data { #define EP93XX_MATRIX_ROWS (8) #define EP93XX_MATRIX_COLS (8) -#endif /* __ASM_ARCH_EP93XX_KEYPAD_H */ +#endif /* __KEYPAD_EP93XX_H */