From patchwork Fri Sep 27 11:52:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2954231 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 E9842BFF0B for ; Fri, 27 Sep 2013 11:52:24 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E200820304 for ; Fri, 27 Sep 2013 11:52:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A55A8202EC for ; Fri, 27 Sep 2013 11:52:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751027Ab3I0LwP (ORCPT ); Fri, 27 Sep 2013 07:52:15 -0400 Received: from mail-pa0-f43.google.com ([209.85.220.43]:63989 "EHLO mail-pa0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751010Ab3I0LwP (ORCPT ); Fri, 27 Sep 2013 07:52:15 -0400 Received: by mail-pa0-f43.google.com with SMTP id hz1so2687462pad.16 for ; Fri, 27 Sep 2013 04:52:14 -0700 (PDT) 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=UF9+6PGLYDDap+uoXjIEDkHB2+EdNmv6JN6Ib/xa0z4=; b=lN/NnCFDlRS6BxQzKL1tPswu5ASCZGqQrass5xjZgVy82WLd9lupDrEkd/CHZOllU1 Bx4staCV5ccJsEWjcy6Ll5vUZ3Ee+i2yk+a0PKrDCv937ZUSay3TLAjnGPshZm5FWtht keR5lW0JppLgCNP/aFeo7MRzGaBDU72xT1NEvkWm/h9T3hZqLFc0D83kKKiW/VRCIleW 9pjwG5u+oscEFQD47l5vZ8Vdilfukl+zPeuOBYFEiN5CNnscIVG7o/NLmi9NGw0xp11D quG4HmtG/9Ya7QFZ/7tZInGHIax+wJBiZpAv6TA/zvUqeIib3cSMZL1Po0Pn/8mn7Ue3 jB1g== X-Gm-Message-State: ALoCoQnet/VpBZxpKAOWGCTV358gmTcNYxNR9M/47otqn7hzuqYoh61lplGZ4wQbbiLd8rQCeri5 X-Received: by 10.68.219.194 with SMTP id pq2mr6917191pbc.52.1380282734775; Fri, 27 Sep 2013 04:52:14 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id xe9sm12077127pab.0.1969.12.31.16.00.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 27 Sep 2013 04:52:14 -0700 (PDT) From: Sachin Kamat To: linux-input@vger.kernel.org Cc: dmitry.torokhov@gmail.com, sachin.kamat@linaro.org Subject: [PATCH 1/7] Input: gpio_keys - Include linux/of.h header Date: Fri, 27 Sep 2013 17:22:03 +0530 Message-Id: <1380282729-26669-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=-9.3 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 'of_match_ptr' is defined in linux/of.h. Include it explicitly. Signed-off-by: Sachin Kamat --- drivers/input/keyboard/gpio_keys.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c index 440ce32..2db1324 100644 --- a/drivers/input/keyboard/gpio_keys.c +++ b/drivers/input/keyboard/gpio_keys.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include