aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/amd_iommu.c
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2008-12-10 13:58:00 -0500
committerJoerg Roedel <joerg.roedel@amd.com>2009-01-03 08:11:57 -0500
commit0cfd7aa90be83a4d278810d231f9ef03f189b4f0 (patch)
tree28151dc0607770460c563553f89c8c4d58908bd9 /arch/x86/kernel/amd_iommu.c
parentab896722867602eb0e836717e8b857ad513800d8 (diff)
AMD IOMMU: convert iommu->need_sync to bool
Impact: use bool instead of int for iommu->need_sync Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'arch/x86/kernel/amd_iommu.c')
-rw-r--r--arch/x86/kernel/amd_iommu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/amd_iommu.c b/arch/x86/kernel/amd_iommu.c
index a53cf48d3be8..e410e97e5b0a 100644
--- a/arch/x86/kernel/amd_iommu.c
+++ b/arch/x86/kernel/amd_iommu.c
@@ -198,7 +198,7 @@ static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
198 spin_lock_irqsave(&iommu->lock, flags); 198 spin_lock_irqsave(&iommu->lock, flags);
199 ret = __iommu_queue_command(iommu, cmd); 199 ret = __iommu_queue_command(iommu, cmd);
200 if (!ret) 200 if (!ret)
201 iommu->need_sync = 1; 201 iommu->need_sync = true;
202 spin_unlock_irqrestore(&iommu->lock, flags); 202 spin_unlock_irqrestore(&iommu->lock, flags);
203 203
204 return ret; 204 return ret;
@@ -263,7 +263,7 @@ static int iommu_completion_wait(struct amd_iommu *iommu)
263 263
264 ret = __iommu_completion_wait(iommu); 264 ret = __iommu_completion_wait(iommu);
265 265
266 iommu->need_sync = 0; 266 iommu->need_sync = false;
267 267
268 if (ret) 268 if (ret)
269 goto out; 269 goto out;