From patchwork Tue Jan 12 14:19:57 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bogicevic Sasa X-Patchwork-Id: 8017861 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: X-Original-To: patchwork-linux-pci@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id E23BABEEE5 for ; Tue, 12 Jan 2016 14:20:09 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2B46D203C2 for ; Tue, 12 Jan 2016 14:20:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3DA0A20145 for ; Tue, 12 Jan 2016 14:20:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762225AbcALOUG (ORCPT ); Tue, 12 Jan 2016 09:20:06 -0500 Received: from mail-wm0-f49.google.com ([74.125.82.49]:34060 "EHLO mail-wm0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1762209AbcALOUE (ORCPT ); Tue, 12 Jan 2016 09:20:04 -0500 Received: by mail-wm0-f49.google.com with SMTP id u188so257767215wmu.1; Tue, 12 Jan 2016 06:20:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=QFDf0LrpbZFV+x9rUVTpdd2/+94Up5UvlF+b2595mTk=; b=MR6/1NgNpOgpLirKDIyVIgwEoH+pnka6IbVTna93Wj5UjE4U22iEbq+KM8DUKXIZE6 GVoerGvQdRH6kvOEHuGuAuqSED8Xq2b+j3Y/5ySQN/QCSi8zsaPBkTwg6OPBc9/DY+PJ uIRxMkANPzo2/MO1WGCZrycksqClODlkO4PC4RbeWwSBorBsNZRsGuEu1uTKGatdvPNz c9GsLkybgkTwk0FulLbSzSdpMFii08Qj4F/2cMETJgp4f4yLn17HgEYwx+RN5ZBv2hFw BfijBVEBOzW7+rpSnPc5Ec8fAJiBYtF65xPHdQed/YKj7cqSSjeRtOZsG7QntROnYIz3 gbHA== X-Received: by 10.194.83.72 with SMTP id o8mr86326542wjy.46.1452608403554; Tue, 12 Jan 2016 06:20:03 -0800 (PST) Received: from localhost.localdomain ([82.117.204.218]) by smtp.gmail.com with ESMTPSA id t9sm70228549wjf.33.2016.01.12.06.20.02 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 12 Jan 2016 06:20:02 -0800 (PST) From: Bogicevic Sasa To: bhelgaas@google.com Cc: linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Bogicevic Sasa Subject: [PATCH 2/2] drivers:pci Add pcie/Kconfig to pci/Kconfig Date: Tue, 12 Jan 2016 06:19:57 -0800 Message-Id: <1452608397-32072-1-git-send-email-brutallesale@gmail.com> X-Mailer: git-send-email 2.5.0 Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, 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 Architectures currently have to include both drivers/pci/Kconfig and drivers/pci/pcie/Kconfig. They should include only drivers/pci/Kconfig, and that should handle PCIe as well. Signed-off-by: Bogicevic Sasa --- drivers/pci/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig index 73de4ef..005dd7d 100644 --- a/drivers/pci/Kconfig +++ b/drivers/pci/Kconfig @@ -119,3 +119,5 @@ config PCI_LABEL select NLS source "drivers/pci/host/Kconfig" + +source "drivers/pci/pcie/Kconfig"