From patchwork Thu Oct 18 02:22:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tang Chen X-Patchwork-Id: 192172 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 4467C2C0097 for ; Thu, 18 Oct 2012 13:24:00 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753493Ab2JRCX6 (ORCPT ); Wed, 17 Oct 2012 22:23:58 -0400 Received: from cn.fujitsu.com ([222.73.24.84]:59443 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1752081Ab2JRCX6 (ORCPT ); Wed, 17 Oct 2012 22:23:58 -0400 X-IronPort-AV: E=Sophos;i="4.80,604,1344182400"; d="scan'208";a="6019389" Received: from unknown (HELO tang.cn.fujitsu.com) ([10.167.250.3]) by song.cn.fujitsu.com with ESMTP; 18 Oct 2012 10:22:28 +0800 Received: from fnstmail02.fnst.cn.fujitsu.com (tang.cn.fujitsu.com [127.0.0.1]) by tang.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id q9I2Nubm014892; Thu, 18 Oct 2012 10:23:56 +0800 Received: from tangchen.fnst.cn.fujitsu.com ([10.167.225.117]) by fnstmail02.fnst.cn.fujitsu.com (Lotus Domino Release 8.5.3) with ESMTP id 2012101810233480-570289 ; Thu, 18 Oct 2012 10:23:34 +0800 From: Tang Chen To: bhelgaas@google.com, lenb@kernel.org, yinghai@kernel.org, jiang.liu@huawei.com, izumi.taku@jp.fujitsu.com, isimatu.yasuaki@jp.fujitsu.com, linux-acpi@vger.kernel.org, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] Add PNP0A08 into acpi_pci_roots array. Date: Thu, 18 Oct 2012 10:22:51 +0800 Message-Id: <1350526971-9427-1-git-send-email-tangchen@cn.fujitsu.com> X-Mailer: git-send-email 1.7.10.1 X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2012/10/18 10:23:35, Serialize by Router on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2012/10/18 10:23:35, Serialize complete at 2012/10/18 10:23:35 Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org acpi_pci_roots array doesn't include PNP0A08, which is PCI Express Root Bridge. Signed-off-by: Tang Chen --- drivers/acpi/pci_root.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c index 037b59c..dedc4d6 100644 --- a/drivers/acpi/pci_root.c +++ b/drivers/acpi/pci_root.c @@ -56,6 +56,7 @@ static int acpi_pci_root_start(struct acpi_device *device); static const struct acpi_device_id root_device_ids[] = { {"PNP0A03", 0}, + {"PNP0A08", 0}, {"", 0}, }; MODULE_DEVICE_TABLE(acpi, root_device_ids);