From patchwork Fri Sep 27 11:52:06 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2954261 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 840C9BFF0B for ; Fri, 27 Sep 2013 11:52:29 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F276920363 for ; Fri, 27 Sep 2013 11:52:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B460420318 for ; Fri, 27 Sep 2013 11:52:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751031Ab3I0LwX (ORCPT ); Fri, 27 Sep 2013 07:52:23 -0400 Received: from mail-pa0-f51.google.com ([209.85.220.51]:63511 "EHLO mail-pa0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751078Ab3I0LwW (ORCPT ); Fri, 27 Sep 2013 07:52:22 -0400 Received: by mail-pa0-f51.google.com with SMTP id kp14so2671294pab.38 for ; Fri, 27 Sep 2013 04:52:21 -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=6r5X3UYOl+QUnrwwJG4F/8hndsa+9rfUyp0oyouIuyk=; b=KHFP/QcKlmZOAWKpDsnEHsqR9F/io7QklgGYoUgPj3e2qJZ3eCaw5sO6O2wvbadc8y IeJ0QBGUZITHopePu5psqcamy+6jAHOo/s0gwcUfBugg/bxlC07H/DWGKRZAz783Gc4m +vk8h6jkNssRaJukbPdT2n7IT55gSipn6vKw1cZlSIjvQAEwWoUPoFlP1gEBeAp7Cujs QAZrJ5gSxjnvprcucaQzqcBo+wF4S9hNvjQ7EHApGdzXVuoZgs501lM2XMvWITjpkcIh 0bzw7pQfBTGfAwldUTQihpN6Iu/i6rQwTNjIFYV7QBqKZ69ceEC3jPv3YVKgnAzynyWK IT3w== X-Gm-Message-State: ALoCoQmIhVb3Dyz/RBsWxQGpEuWxFEhCccEHz9zkeCJmcVYc41BPom60rl7d4bGgC1lI+ALBn1Ag X-Received: by 10.68.225.42 with SMTP id rh10mr6922639pbc.176.1380282741598; Fri, 27 Sep 2013 04:52:21 -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:21 -0700 (PDT) From: Sachin Kamat To: linux-input@vger.kernel.org Cc: dmitry.torokhov@gmail.com, sachin.kamat@linaro.org Subject: [PATCH 4/7] Input: pwm-beeper - Include linux/of.h header Date: Fri, 27 Sep 2013 17:22:06 +0530 Message-Id: <1380282729-26669-4-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/misc/pwm-beeper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/input/misc/pwm-beeper.c b/drivers/input/misc/pwm-beeper.c index 2ff4d1c..940566e 100644 --- a/drivers/input/misc/pwm-beeper.c +++ b/drivers/input/misc/pwm-beeper.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include