From patchwork Fri Oct 18 03:07:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 20438 Received: from mail.tu-berlin.de ([130.149.7.33]) by www.linuxtv.org with esmtp (Exim 4.72) (envelope-from ) id 1VX0QL-0001MK-46; Fri, 18 Oct 2013 05:08:25 +0200 X-tubIT-Incoming-IP: 209.132.180.67 Received: from vger.kernel.org ([209.132.180.67]) by mail.tu-berlin.de (exim-4.72/mailfrontend-8) with esmtp id 1VX0QJ-0006oq-jj; Fri, 18 Oct 2013 05:08:25 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756228Ab3JRDIU (ORCPT + 1 other); Thu, 17 Oct 2013 23:08:20 -0400 Received: from mail-pb0-f41.google.com ([209.85.160.41]:47616 "EHLO mail-pb0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756137Ab3JRDIT (ORCPT ); Thu, 17 Oct 2013 23:08:19 -0400 Received: by mail-pb0-f41.google.com with SMTP id rp16so3220599pbb.28 for ; Thu, 17 Oct 2013 20:08:18 -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=GvRVjB9Cnpmx7vhkc5VmSavxn4NvOS+Y5u80Oly9IIM=; b=AftWenhIQ4kxz6IghxP76eO8FhXo4YshMcxCHfKmiS2s7TCVvAJLoDnHiml4QHsPoK KJwQmYymCnoqBYESmZgz5njVXMVI0WdPJuKa2JBjEdYZZ71xPI/I1MpWxgCzDVT9IjqC UalcooWDlmGJIbmVYq2tAStf5MIzE2ZSQ0XJioQGoBV19ut8i8N4Ol1exqaJ5NW78sFC XZzYKevztTZta5vKVOqXtrIbKQpKPk9H5+wGIIQRDiIrXCsihPgGy3HoFzciW3R/U6Qw RSHbE6ddsV7xmztjMNFZDOLXsmqTc+XOXo0p8WHPsqicJOZ5JXYpZ2WlmT+reAQK0AfB BLow== X-Gm-Message-State: ALoCoQldFNaLoKsp0LVZShWjwoOjMlM8OzFLxdYgfr6v17Htgv2fTSlLVJLVXYuLBE1dSC5aJrff X-Received: by 10.66.152.102 with SMTP id ux6mr1119030pab.79.1382065698466; Thu, 17 Oct 2013 20:08:18 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id ja5sm101138973pbc.14.1969.12.31.16.00.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 17 Oct 2013 20:08:18 -0700 (PDT) From: Sachin Kamat To: linux-media@vger.kernel.org Cc: hans.verkuil@cisco.com, sachin.kamat@linaro.org, m.chehab@samsung.com Subject: [PATCH 6/6] [media] gpio-ir-recv: Include linux/of.h header Date: Fri, 18 Oct 2013 08:37:15 +0530 Message-Id: <1382065635-27855-6-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1382065635-27855-1-git-send-email-sachin.kamat@linaro.org> References: <1382065635-27855-1-git-send-email-sachin.kamat@linaro.org> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-PMX-Version: 6.0.0.2142326, Antispam-Engine: 2.7.2.2107409, Antispam-Data: 2013.10.18.25715 X-PMX-Spam: Gauge=IIIIIIII, Probability=8%, Report=' MULTIPLE_RCPTS 0.1, HTML_00_01 0.05, HTML_00_10 0.05, BODYTEXTP_SIZE_3000_LESS 0, BODY_SIZE_1000_LESS 0, BODY_SIZE_2000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_7000_LESS 0, BODY_SIZE_800_899 0, URI_ENDS_IN_HTML 0, __ANY_URI 0, __CP_URI_IN_BODY 0, __HAS_FROM 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __HAS_X_MAILING_LIST 0, __IN_REP_TO 0, __MIME_TEXT_ONLY 0, __MULTIPLE_RCPTS_CC_X2 0, __SANE_MSGID 0, __SUBJ_ALPHA_END 0, __TO_MALFORMED_2 0, __TO_NO_NAME 0, __URI_NO_WWW 0, __URI_NS , __YOUTUBE_RCVD 0' 'of_match_ptr' is defined in linux/of.h. Include it explicitly to avoid build breakage in the future. Signed-off-by: Sachin Kamat --- drivers/media/rc/gpio-ir-recv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/rc/gpio-ir-recv.c b/drivers/media/rc/gpio-ir-recv.c index 07aacfa..80c611c 100644 --- a/drivers/media/rc/gpio-ir-recv.c +++ b/drivers/media/rc/gpio-ir-recv.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include