From patchwork Fri Sep 23 12:40:12 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 674055 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3sgXyJ6rtFz9t1F for ; Fri, 23 Sep 2016 22:40:24 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=linaro.org header.i=@linaro.org header.b=SUI/OpEb; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934293AbcIWMkX (ORCPT ); Fri, 23 Sep 2016 08:40:23 -0400 Received: from mail-lf0-f49.google.com ([209.85.215.49]:34225 "EHLO mail-lf0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933869AbcIWMkV (ORCPT ); Fri, 23 Sep 2016 08:40:21 -0400 Received: by mail-lf0-f49.google.com with SMTP id y6so91921011lff.1 for ; Fri, 23 Sep 2016 05:40:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=G1WMJPqCOEfp8wfMQuwx4J/ra9LbtUlJtqSdwjktkpM=; b=SUI/OpEb9755n0UXpVXWogwRfysPzrgOdVowaedR2zc37MRwmNgIkQhe0WzDd4KXPV zcRrYkyPlpVD6Vea4WleUN+X3EFy/uaIOGE0QoID5shJeFS1ruIlXaIlpDt8pQ6Rc1T4 ak7Vs58axbk3pcSxFgb82/H6QDra6gYBQlNCU= 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=G1WMJPqCOEfp8wfMQuwx4J/ra9LbtUlJtqSdwjktkpM=; b=mf2g30JASGqQVkCs24j4AIyT77vfxA3QLiooqyRr0cxWLSJqR1U4lrjkQlMUyDYaVx kgddieLzE4RPcUwXb8+uTwH2CCfCVBpkObLcJow7aX7w85UgGM1p3k1ptPt0XrYQoe42 QdkfXl3z45fH9d7ySFXF3upF99C7C43oZ/yNslMNJ07FoLbBRsM1wCbOiyGxlyaaROqc G29oRC3hwPolf2YKTa6upaYQlnkSGwMpmgQDJ85k49AUolR3cOuRRFsmDPlwMCcH7qgl YBBRzycqZFtUg4cfvEvWv+tcJU53tP+XPbI6mOcDdib4x5K8btRXxlCEDxH/jK5GF42s jodQ== X-Gm-Message-State: AE9vXwNBrdOyBI7BFTo8tIYrirgt47OiEbuW7nJMOuM9AHgJLdZex9+3Mog1Rz5swWL/jxsO X-Received: by 10.25.16.211 with SMTP id 80mr3025163lfq.172.1474634419957; Fri, 23 Sep 2016 05:40:19 -0700 (PDT) Received: from linuslaptop.ideon.se ([85.235.10.227]) by smtp.gmail.com with ESMTPSA id p82sm1186498lfd.15.2016.09.23.05.40.18 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 23 Sep 2016 05:40:19 -0700 (PDT) From: Linus Walleij To: linux-gpio@vger.kernel.org, Alexandre Courbot Cc: Linus Walleij , Paul Gortmaker , Tony Lindgren Subject: [PATCH] ARM: omap2: fix missing include Date: Fri, 23 Sep 2016 14:40:12 +0200 Message-Id: <1474634412-7050-1-git-send-email-linus.walleij@linaro.org> X-Mailer: git-send-email 2.7.4 Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org commit d47529b2e9fe "gpio: don't include module.h in shared driver header" removed from the header. It seems arch/arm/mach-omap2/board-rx51-peripherals.c is using __initdata_or_module from through to , so break this dependency so that we get a clean compile. Cc: Paul Gortmaker Cc: Tony Lindgren Fixes: d47529b2e9fe ("gpio: don't include module.h in shared driver header") Signed-off-by: Linus Walleij Acked-by: Tony Lindgren --- Tony: please ACK this if it's OK so I can merge it in front of the offending patch. --- arch/arm/mach-omap2/board-rx51-peripherals.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index a5ab712c1a59..6d3af43ae3e4 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c @@ -29,6 +29,7 @@ #include #include #include +#include #include