Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca020711 authored by Joerg Roedel's avatar Joerg Roedel
Browse files

x86/amd-iommu: Un__init function required on shutdown



The function iommu_feature_disable is required on system
shutdown to disable the IOMMU but it is marked as __init.
This may result in a panic if the memory is reused. This
patch fixes this bug.

Signed-off-by: default avatarJoerg Roedel <joerg.roedel@amd.com>
parent c5cca146
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -240,7 +240,7 @@ static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
	writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
}

static void __init iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
{
	u32 ctrl;