diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2019-06-04 04:11:33 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-06-19 11:09:55 -0400 |
commit | d2912cb15bdda8ba4a5dd73396ad62641af2f520 (patch) | |
tree | ff723089c8673e3f99df3ddcdaeae7a52bd6fdac /drivers/vfio | |
parent | 20c8ccb1975b8d5639789d1025ad6ada38bd6f48 (diff) |
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500
Based on 2 normalized pattern(s):
this program is free software you can redistribute it and or modify
it under the terms of the gnu general public license version 2 as
published by the free software foundation
this program is free software you can redistribute it and or modify
it under the terms of the gnu general public license version 2 as
published by the free software foundation #
extracted by the scancode license scanner the SPDX license identifier
GPL-2.0-only
has been chosen to replace the boilerplate/reference in 4122 file(s).
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Enrico Weigelt <info@metux.net>
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Allison Randal <allison@lohutok.net>
Cc: linux-spdx@vger.kernel.org
Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/vfio')
-rw-r--r-- | drivers/vfio/mdev/mdev_core.c | 5 | ||||
-rw-r--r-- | drivers/vfio/mdev/mdev_driver.c | 5 | ||||
-rw-r--r-- | drivers/vfio/mdev/mdev_private.h | 5 | ||||
-rw-r--r-- | drivers/vfio/mdev/mdev_sysfs.c | 5 | ||||
-rw-r--r-- | drivers/vfio/mdev/vfio_mdev.c | 5 | ||||
-rw-r--r-- | drivers/vfio/pci/vfio_pci.c | 5 | ||||
-rw-r--r-- | drivers/vfio/pci/vfio_pci_config.c | 5 | ||||
-rw-r--r-- | drivers/vfio/pci/vfio_pci_igd.c | 5 | ||||
-rw-r--r-- | drivers/vfio/pci/vfio_pci_intrs.c | 5 | ||||
-rw-r--r-- | drivers/vfio/pci/vfio_pci_private.h | 5 | ||||
-rw-r--r-- | drivers/vfio/pci/vfio_pci_rdwr.c | 5 | ||||
-rw-r--r-- | drivers/vfio/vfio.c | 5 | ||||
-rw-r--r-- | drivers/vfio/vfio_iommu_spapr_tce.c | 5 | ||||
-rw-r--r-- | drivers/vfio/vfio_iommu_type1.c | 5 | ||||
-rw-r--r-- | drivers/vfio/vfio_spapr_eeh.c | 5 | ||||
-rw-r--r-- | drivers/vfio/virqfd.c | 5 |
16 files changed, 16 insertions, 64 deletions
diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c index ae23151442cb..ed8608763134 100644 --- a/drivers/vfio/mdev/mdev_core.c +++ b/drivers/vfio/mdev/mdev_core.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Mediated device Core Driver | 3 | * Mediated device Core Driver |
3 | * | 4 | * |
4 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. | 5 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. |
5 | * Author: Neo Jia <cjia@nvidia.com> | 6 | * Author: Neo Jia <cjia@nvidia.com> |
6 | * Kirti Wankhede <kwankhede@nvidia.com> | 7 | * Kirti Wankhede <kwankhede@nvidia.com> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #include <linux/module.h> | 10 | #include <linux/module.h> |
diff --git a/drivers/vfio/mdev/mdev_driver.c b/drivers/vfio/mdev/mdev_driver.c index 6f0391f6f9b6..0d3223aee20b 100644 --- a/drivers/vfio/mdev/mdev_driver.c +++ b/drivers/vfio/mdev/mdev_driver.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * MDEV driver | 3 | * MDEV driver |
3 | * | 4 | * |
4 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. | 5 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. |
5 | * Author: Neo Jia <cjia@nvidia.com> | 6 | * Author: Neo Jia <cjia@nvidia.com> |
6 | * Kirti Wankhede <kwankhede@nvidia.com> | 7 | * Kirti Wankhede <kwankhede@nvidia.com> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #include <linux/device.h> | 10 | #include <linux/device.h> |
diff --git a/drivers/vfio/mdev/mdev_private.h b/drivers/vfio/mdev/mdev_private.h index 398767526276..7d922950caaf 100644 --- a/drivers/vfio/mdev/mdev_private.h +++ b/drivers/vfio/mdev/mdev_private.h | |||
@@ -1,13 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0-only */ | ||
1 | /* | 2 | /* |
2 | * Mediated device interal definitions | 3 | * Mediated device interal definitions |
3 | * | 4 | * |
4 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. | 5 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. |
5 | * Author: Neo Jia <cjia@nvidia.com> | 6 | * Author: Neo Jia <cjia@nvidia.com> |
6 | * Kirti Wankhede <kwankhede@nvidia.com> | 7 | * Kirti Wankhede <kwankhede@nvidia.com> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #ifndef MDEV_PRIVATE_H | 10 | #ifndef MDEV_PRIVATE_H |
diff --git a/drivers/vfio/mdev/mdev_sysfs.c b/drivers/vfio/mdev/mdev_sysfs.c index ffa3dcebf201..7570c7602ab4 100644 --- a/drivers/vfio/mdev/mdev_sysfs.c +++ b/drivers/vfio/mdev/mdev_sysfs.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * File attributes for Mediated devices | 3 | * File attributes for Mediated devices |
3 | * | 4 | * |
4 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. | 5 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. |
5 | * Author: Neo Jia <cjia@nvidia.com> | 6 | * Author: Neo Jia <cjia@nvidia.com> |
6 | * Kirti Wankhede <kwankhede@nvidia.com> | 7 | * Kirti Wankhede <kwankhede@nvidia.com> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #include <linux/sysfs.h> | 10 | #include <linux/sysfs.h> |
diff --git a/drivers/vfio/mdev/vfio_mdev.c b/drivers/vfio/mdev/vfio_mdev.c index d230620fe02d..30964a4e0a28 100644 --- a/drivers/vfio/mdev/vfio_mdev.c +++ b/drivers/vfio/mdev/vfio_mdev.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * VFIO based driver for Mediated device | 3 | * VFIO based driver for Mediated device |
3 | * | 4 | * |
4 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. | 5 | * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. |
5 | * Author: Neo Jia <cjia@nvidia.com> | 6 | * Author: Neo Jia <cjia@nvidia.com> |
6 | * Kirti Wankhede <kwankhede@nvidia.com> | 7 | * Kirti Wankhede <kwankhede@nvidia.com> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #include <linux/init.h> | 10 | #include <linux/init.h> |
diff --git a/drivers/vfio/pci/vfio_pci.c b/drivers/vfio/pci/vfio_pci.c index cab71da46f4a..703948c9fbe1 100644 --- a/drivers/vfio/pci/vfio_pci.c +++ b/drivers/vfio/pci/vfio_pci.c | |||
@@ -1,11 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. | 3 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. |
3 | * Author: Alex Williamson <alex.williamson@redhat.com> | 4 | * Author: Alex Williamson <alex.williamson@redhat.com> |
4 | * | 5 | * |
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * published by the Free Software Foundation. | ||
8 | * | ||
9 | * Derived from original vfio: | 6 | * Derived from original vfio: |
10 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. | 7 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. |
11 | * Author: Tom Lyon, pugs@cisco.com | 8 | * Author: Tom Lyon, pugs@cisco.com |
diff --git a/drivers/vfio/pci/vfio_pci_config.c b/drivers/vfio/pci/vfio_pci_config.c index 52963a904790..f0891bd8444c 100644 --- a/drivers/vfio/pci/vfio_pci_config.c +++ b/drivers/vfio/pci/vfio_pci_config.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * VFIO PCI config space virtualization | 3 | * VFIO PCI config space virtualization |
3 | * | 4 | * |
4 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. | 5 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. |
5 | * Author: Alex Williamson <alex.williamson@redhat.com> | 6 | * Author: Alex Williamson <alex.williamson@redhat.com> |
6 | * | 7 | * |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * Derived from original vfio: | 8 | * Derived from original vfio: |
12 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. | 9 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. |
13 | * Author: Tom Lyon, pugs@cisco.com | 10 | * Author: Tom Lyon, pugs@cisco.com |
diff --git a/drivers/vfio/pci/vfio_pci_igd.c b/drivers/vfio/pci/vfio_pci_igd.c index 6394b168ef29..53d97f459252 100644 --- a/drivers/vfio/pci/vfio_pci_igd.c +++ b/drivers/vfio/pci/vfio_pci_igd.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * VFIO PCI Intel Graphics support | 3 | * VFIO PCI Intel Graphics support |
3 | * | 4 | * |
4 | * Copyright (C) 2016 Red Hat, Inc. All rights reserved. | 5 | * Copyright (C) 2016 Red Hat, Inc. All rights reserved. |
5 | * Author: Alex Williamson <alex.williamson@redhat.com> | 6 | * Author: Alex Williamson <alex.williamson@redhat.com> |
6 | * | 7 | * |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * Register a device specific region through which to provide read-only | 8 | * Register a device specific region through which to provide read-only |
12 | * access to the Intel IGD opregion. The register defining the opregion | 9 | * access to the Intel IGD opregion. The register defining the opregion |
13 | * address is also virtualized to prevent user modification. | 10 | * address is also virtualized to prevent user modification. |
diff --git a/drivers/vfio/pci/vfio_pci_intrs.c b/drivers/vfio/pci/vfio_pci_intrs.c index 1c46045b0e7f..3fa3f728fb39 100644 --- a/drivers/vfio/pci/vfio_pci_intrs.c +++ b/drivers/vfio/pci/vfio_pci_intrs.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * VFIO PCI interrupt handling | 3 | * VFIO PCI interrupt handling |
3 | * | 4 | * |
4 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. | 5 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. |
5 | * Author: Alex Williamson <alex.williamson@redhat.com> | 6 | * Author: Alex Williamson <alex.williamson@redhat.com> |
6 | * | 7 | * |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * Derived from original vfio: | 8 | * Derived from original vfio: |
12 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. | 9 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. |
13 | * Author: Tom Lyon, pugs@cisco.com | 10 | * Author: Tom Lyon, pugs@cisco.com |
diff --git a/drivers/vfio/pci/vfio_pci_private.h b/drivers/vfio/pci/vfio_pci_private.h index 1812cf22fc4f..ee6ee91718a4 100644 --- a/drivers/vfio/pci/vfio_pci_private.h +++ b/drivers/vfio/pci/vfio_pci_private.h | |||
@@ -1,11 +1,8 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0-only */ | ||
1 | /* | 2 | /* |
2 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. | 3 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. |
3 | * Author: Alex Williamson <alex.williamson@redhat.com> | 4 | * Author: Alex Williamson <alex.williamson@redhat.com> |
4 | * | 5 | * |
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * published by the Free Software Foundation. | ||
8 | * | ||
9 | * Derived from original vfio: | 6 | * Derived from original vfio: |
10 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. | 7 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. |
11 | * Author: Tom Lyon, pugs@cisco.com | 8 | * Author: Tom Lyon, pugs@cisco.com |
diff --git a/drivers/vfio/pci/vfio_pci_rdwr.c b/drivers/vfio/pci/vfio_pci_rdwr.c index a6029d0a5524..0120d8324a40 100644 --- a/drivers/vfio/pci/vfio_pci_rdwr.c +++ b/drivers/vfio/pci/vfio_pci_rdwr.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * VFIO PCI I/O Port & MMIO access | 3 | * VFIO PCI I/O Port & MMIO access |
3 | * | 4 | * |
4 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. | 5 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. |
5 | * Author: Alex Williamson <alex.williamson@redhat.com> | 6 | * Author: Alex Williamson <alex.williamson@redhat.com> |
6 | * | 7 | * |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * Derived from original vfio: | 8 | * Derived from original vfio: |
12 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. | 9 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. |
13 | * Author: Tom Lyon, pugs@cisco.com | 10 | * Author: Tom Lyon, pugs@cisco.com |
diff --git a/drivers/vfio/vfio.c b/drivers/vfio/vfio.c index 82fcf07fa9ea..388597930b64 100644 --- a/drivers/vfio/vfio.c +++ b/drivers/vfio/vfio.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * VFIO core | 3 | * VFIO core |
3 | * | 4 | * |
4 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. | 5 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. |
5 | * Author: Alex Williamson <alex.williamson@redhat.com> | 6 | * Author: Alex Williamson <alex.williamson@redhat.com> |
6 | * | 7 | * |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * Derived from original vfio: | 8 | * Derived from original vfio: |
12 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. | 9 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. |
13 | * Author: Tom Lyon, pugs@cisco.com | 10 | * Author: Tom Lyon, pugs@cisco.com |
diff --git a/drivers/vfio/vfio_iommu_spapr_tce.c b/drivers/vfio/vfio_iommu_spapr_tce.c index 40ddc0c5f677..7048c9198c21 100644 --- a/drivers/vfio/vfio_iommu_spapr_tce.c +++ b/drivers/vfio/vfio_iommu_spapr_tce.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * VFIO: IOMMU DMA mapping support for TCE on POWER | 3 | * VFIO: IOMMU DMA mapping support for TCE on POWER |
3 | * | 4 | * |
4 | * Copyright (C) 2013 IBM Corp. All rights reserved. | 5 | * Copyright (C) 2013 IBM Corp. All rights reserved. |
5 | * Author: Alexey Kardashevskiy <aik@ozlabs.ru> | 6 | * Author: Alexey Kardashevskiy <aik@ozlabs.ru> |
6 | * | 7 | * |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * Derived from original vfio_iommu_type1.c: | 8 | * Derived from original vfio_iommu_type1.c: |
12 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. | 9 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. |
13 | * Author: Alex Williamson <alex.williamson@redhat.com> | 10 | * Author: Alex Williamson <alex.williamson@redhat.com> |
diff --git a/drivers/vfio/vfio_iommu_type1.c b/drivers/vfio/vfio_iommu_type1.c index 3ddc375e7063..add34adfadc7 100644 --- a/drivers/vfio/vfio_iommu_type1.c +++ b/drivers/vfio/vfio_iommu_type1.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * VFIO: IOMMU DMA mapping support for Type1 IOMMU | 3 | * VFIO: IOMMU DMA mapping support for Type1 IOMMU |
3 | * | 4 | * |
4 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. | 5 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. |
5 | * Author: Alex Williamson <alex.williamson@redhat.com> | 6 | * Author: Alex Williamson <alex.williamson@redhat.com> |
6 | * | 7 | * |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * Derived from original vfio: | 8 | * Derived from original vfio: |
12 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. | 9 | * Copyright 2010 Cisco Systems, Inc. All rights reserved. |
13 | * Author: Tom Lyon, pugs@cisco.com | 10 | * Author: Tom Lyon, pugs@cisco.com |
diff --git a/drivers/vfio/vfio_spapr_eeh.c b/drivers/vfio/vfio_spapr_eeh.c index 1a742fe8f6db..67f55ac1d459 100644 --- a/drivers/vfio/vfio_spapr_eeh.c +++ b/drivers/vfio/vfio_spapr_eeh.c | |||
@@ -1,12 +1,9 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * EEH functionality support for VFIO devices. The feature is only | 3 | * EEH functionality support for VFIO devices. The feature is only |
3 | * available on sPAPR compatible platforms. | 4 | * available on sPAPR compatible platforms. |
4 | * | 5 | * |
5 | * Copyright Gavin Shan, IBM Corporation 2014. | 6 | * Copyright Gavin Shan, IBM Corporation 2014. |
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | 7 | */ |
11 | 8 | ||
12 | #include <linux/module.h> | 9 | #include <linux/module.h> |
diff --git a/drivers/vfio/virqfd.c b/drivers/vfio/virqfd.c index 2a1be859ee71..997cb5d0a657 100644 --- a/drivers/vfio/virqfd.c +++ b/drivers/vfio/virqfd.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * VFIO generic eventfd code for IRQFD support. | 3 | * VFIO generic eventfd code for IRQFD support. |
3 | * Derived from drivers/vfio/pci/vfio_pci_intrs.c | 4 | * Derived from drivers/vfio/pci/vfio_pci_intrs.c |
4 | * | 5 | * |
5 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. | 6 | * Copyright (C) 2012 Red Hat, Inc. All rights reserved. |
6 | * Author: Alex Williamson <alex.williamson@redhat.com> | 7 | * Author: Alex Williamson <alex.williamson@redhat.com> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #include <linux/vfio.h> | 10 | #include <linux/vfio.h> |