aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/iommu.c
diff options
context:
space:
mode:
authorHannes Eder <hannes@hanneseder.net>2009-03-05 12:12:44 +0100
committerJoerg Roedel <joerg.roedel@amd.com>2009-03-05 12:12:44 +0100
commitff2c8a4167eb143c5e2a03148fa996978938e8d7 (patch)
tree2d828a210870cf4befff4e93ee24a210fdfcfe60 /drivers/base/iommu.c
parentAMD IOMMU: remove unnecessary ifdef (diff)
downloadlinux-dev-ff2c8a4167eb143c5e2a03148fa996978938e8d7.tar.xz
linux-dev-ff2c8a4167eb143c5e2a03148fa996978938e8d7.zip
IOMMU-API: use ANSI style function declaration for 'iommu_found'
Fix this sparse warning: drivers/base/iommu.c:34:18: warning: non-ANSI function declaration of function 'iommu_found' Signed-off-by: Hannes Eder <hannes@hanneseder.net> Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to '')
-rw-r--r--drivers/base/iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/iommu.c b/drivers/base/iommu.c
index 5e039d4f877c..c2d1eed90376 100644
--- a/drivers/base/iommu.c
+++ b/drivers/base/iommu.c
@@ -31,7 +31,7 @@ void register_iommu(struct iommu_ops *ops)
iommu_ops = ops;
}
-bool iommu_found()
+bool iommu_found(void)
{
return iommu_ops != NULL;
}