From patchwork Fri Sep 27 11:52:04 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2954241 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 D158ABFF0B for ; Fri, 27 Sep 2013 11:52:26 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id BBBC220304 for ; Fri, 27 Sep 2013 11:52:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9FC4220316 for ; Fri, 27 Sep 2013 11:52:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751106Ab3I0LwW (ORCPT ); Fri, 27 Sep 2013 07:52:22 -0400 Received: from mail-pa0-f42.google.com ([209.85.220.42]:63587 "EHLO mail-pa0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751025Ab3I0LwR (ORCPT ); Fri, 27 Sep 2013 07:52:17 -0400 Received: by mail-pa0-f42.google.com with SMTP id lj1so2720035pab.1 for ; Fri, 27 Sep 2013 04:52:17 -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:in-reply-to :references; bh=LqhYbe0Yf++n8hFCCKUC6/DapXZuBEhsyBP3SxzlKcM=; b=ghyunmnZPrlaaDZ2EQ3XsQvXRb0iedaRHz8RX1+OKENQnOygYgC36egGTKRnPGlp22 us58d1P9N7X1SwUi2QqI8D7ZXpoDldJlupBRyWUBsiIpZibK7qb0zDAxsZ29yqjIK45L ehAZKyj7P7f8l4WpN+VKmJhKHuYx9Zj1Pph2h77EmWcMb3CM6qQlV7QhxQdvf6SP3rdk 8KtxdQB+51A6dxTozCvlJoHTSSY3Veu6YiyGx3kfUGqq/JH7npoYVCDTGcWAmG2L6aZB 5dpQsLRTxmNEmS11cNAFoUY7zwvr18XSI5fC894rIXKqJfh6DHafXeUcbe9lCtu+kpg2 brnw== X-Gm-Message-State: ALoCoQl+v9w7DlTN8hYz9aFz0AA9bwciCdOBGbNz/osgf6jY69xrAv0ZoIC0PcW6zVLM600yncM4 X-Received: by 10.68.216.35 with SMTP id on3mr6989142pbc.86.1380282737209; Fri, 27 Sep 2013 04:52:17 -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:16 -0700 (PDT) From: Sachin Kamat To: linux-input@vger.kernel.org Cc: dmitry.torokhov@gmail.com, sachin.kamat@linaro.org Subject: [PATCH 2/7] Input: gpio_keys_polled - Include linux/of.h header Date: Fri, 27 Sep 2013 17:22:04 +0530 Message-Id: <1380282729-26669-2-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1380282729-26669-1-git-send-email-sachin.kamat@linaro.org> References: <1380282729-26669-1-git-send-email-sachin.kamat@linaro.org> 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_polled.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/input/keyboard/gpio_keys_polled.c b/drivers/input/keyboard/gpio_keys_polled.c index cd5ed9e..4e42819 100644 --- a/drivers/input/keyboard/gpio_keys_polled.c +++ b/drivers/input/keyboard/gpio_keys_polled.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include