From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com ([209.132.183.28]:42052 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932532AbbC2Nly (ORCPT ); Sun, 29 Mar 2015 09:41:54 -0400 Date: Sun, 29 Mar 2015 15:41:51 +0200 From: "Michael S. Tsirkin" To: linux-kernel@vger.kernel.org Cc: Bjorn Helgaas , linux-pci@vger.kernel.org Subject: [PATCH 58/86] pci-label: use uapi/linux/pci_ids.h directly Message-ID: <1427635734-24786-59-git-send-email-mst@redhat.com> References: <1427635734-24786-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <1427635734-24786-1-git-send-email-mst@redhat.com> Sender: linux-pci-owner@vger.kernel.org List-ID: Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h, use the new header directly so we can drop the wrapper in include/linux/pci_ids.h. Signed-off-by: Michael S. Tsirkin --- drivers/pci/pci-label.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci-label.c b/drivers/pci/pci-label.c index 2ab1b47..cf250c1 100644 --- a/drivers/pci/pci-label.c +++ b/drivers/pci/pci-label.c @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include #include -- MST