Received: by 2002:a25:b323:0:0:0:0:0 with SMTP id l35csp1377030ybj; Fri, 20 Sep 2019 09:28:08 -0700 (PDT) X-Google-Smtp-Source: APXvYqzBvbQfW6nMlRpdRGa3WL2aA5WgGol19BMBCykZE56zo/XM4cNOwJttXnZfSAg8ZQjSY9/B X-Received: by 2002:a50:99d5:: with SMTP id n21mr22986580edb.50.1568996888574; Fri, 20 Sep 2019 09:28:08 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1568996888; cv=none; d=google.com; s=arc-20160816; b=mTmkLtGLWvloD9GG4KM9D+EAskcnvcYfmc6BsoqUF/9yx60s63H4ZN+zkGWYmZCWam GD66zA0Lp5udrUS31JfCL09YTmS81brTJqoU5eVMh8Oe68Ox1Yb1mToo9ewqAxFZ11Pt lnLFvv4ffnfu1Ahu3rIjBheO2gMyOG6pGHIQRNc5gc6VroKdEb0+zrYYEriQg4kPYjE9 8XK1nXrq40he1PPEkLpKe+/p+aHWZYAxrXeskylCaeFREVR253l1HxI3YTRo7PXo/Dyz 0u8yXo/PwtbOEps4Y6rfteQoX/boj+nz4EiL+I/cUn9TuxudPf/6X9o514xEvHfnl79h uHuQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:subject:cc :to:from; bh=YBYDHYmI0EF30mfLm5nN1RVVuJI4/gQbe7PsEwqfuLA=; b=iiM0GYOuFHneB699quSVJfKNp1RUt2cpUM1EB8TVgS/A+5i45FVNohaVXaKGj0A1ao 9FI/hpqrWMcrcAeG6x7vDtJrQ+4HKGFtI80AsZn0lLADWgeFrBNoaGPTKSq6lSNo3VnE 8hjt4JMhkRo2mBFWn49aClbBntTuuFja/6o9PXsFAe7CBAAAXMQD80gdio30sw1gn7t8 IAoYIyG29yYgfN1Z80rhjhLUcF7cDwBJjTquaoLuLbyCqMe/R4mHmCoJTBT0KSN6BEm4 Ddg/uPu4MQqJUCRwsgwrBHL3YRAOhLjKsuSAkiYin01VRuEv2+V/LBBtS3yp3HRqCNep S6Lg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id k23si1777932ede.274.2019.09.20.09.27.44; Fri, 20 Sep 2019 09:28:08 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2391994AbfITBuW (ORCPT + 99 others); Thu, 19 Sep 2019 21:50:22 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:46972 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S2390286AbfITBuW (ORCPT ); Thu, 19 Sep 2019 21:50:22 -0400 Received: from DGGEMS402-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 050E4FDE5DA791F94F33; Fri, 20 Sep 2019 09:50:21 +0800 (CST) Received: from localhost (10.133.213.239) by DGGEMS402-HUB.china.huawei.com (10.3.19.202) with Microsoft SMTP Server id 14.3.439.0; Fri, 20 Sep 2019 09:50:14 +0800 From: YueHaibing To: , , , , , , , CC: , , Subject: [PATCH -next] PCI: tegra: Add missing include file Date: Fri, 20 Sep 2019 09:48:07 +0800 Message-ID: <20190920014807.38288-1-yuehaibing@huawei.com> X-Mailer: git-send-email 2.10.2.windows.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.133.213.239] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix build error without CONFIG_PINCTRL drivers/pci/controller/dwc/pcie-tegra194.c: In function tegra_pcie_config_rp: drivers/pci/controller/dwc/pcie-tegra194.c:1394:8: error: implicit declaration of function pinctrl_pm_select_default_state; did you mean prandom_seed_full_state? [-Werror=implicit-function-declaration] ret = pinctrl_pm_select_default_state(dev); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ prandom_seed_full_state Reported-by: Hulk Robot Fixes: ab2a50e7602b ("PCI: tegra: Add support to configure sideband pins") Signed-off-by: YueHaibing --- drivers/pci/controller/dwc/pcie-tegra194.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/controller/dwc/pcie-tegra194.c b/drivers/pci/controller/dwc/pcie-tegra194.c index 09ed8e4..b219d3b2 100644 --- a/drivers/pci/controller/dwc/pcie-tegra194.c +++ b/drivers/pci/controller/dwc/pcie-tegra194.c @@ -28,6 +28,7 @@ #include #include #include +#include #include "pcie-designware.h" #include #include -- 2.7.4