mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-17 06:48:07 +00:00
bb34e69f3d
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
40 lines
1.5 KiB
Diff
40 lines
1.5 KiB
Diff
From fd9b78dce7a6acf7a69902d69c82980634cd7136 Mon Sep 17 00:00:00 2001
|
|
From: Steffen Persvold <sp@numascale.com>
|
|
Date: Thu, 15 Mar 2012 15:20:29 +0100
|
|
Subject: [PATCH 099/147] iommu/amd: Fix section warning for
|
|
prealloc_protection_domains
|
|
|
|
commit cebd5fa4d3046d5b43ce1836a0120612822a7fb0 upstream.
|
|
|
|
Fix the following section warning in drivers/iommu/amd_iommu.c :
|
|
|
|
WARNING: vmlinux.o(.text+0x526e77): Section mismatch in reference from the function prealloc_protection_domains() to the function .init.text:alloc_passthrough_domain()
|
|
The function prealloc_protection_domains() references
|
|
the function __init alloc_passthrough_domain().
|
|
This is often because prealloc_protection_domains lacks a __init
|
|
annotation or the annotation of alloc_passthrough_domain is wrong.
|
|
|
|
Signed-off-by: Steffen Persvold <sp@numascale.com>
|
|
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/iommu/amd_iommu.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c
|
|
index e0b3e33..966a6e7 100644
|
|
--- a/drivers/iommu/amd_iommu.c
|
|
+++ b/drivers/iommu/amd_iommu.c
|
|
@@ -2432,7 +2432,7 @@ static int amd_iommu_dma_supported(struct device *dev, u64 mask)
|
|
* we don't need to preallocate the protection domains anymore.
|
|
* For now we have to.
|
|
*/
|
|
-static void prealloc_protection_domains(void)
|
|
+static void __init prealloc_protection_domains(void)
|
|
{
|
|
struct pci_dev *dev = NULL;
|
|
struct dma_ops_domain *dma_dom;
|
|
--
|
|
1.7.9.4
|
|
|