From: Hannes Eder Date: Thu, 5 Mar 2009 11:12:44 +0000 (+0100) Subject: IOMMU-API: use ANSI style function declaration for 'iommu_found' X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=ff2c8a4167eb143c5e2a03148fa996978938e8d7;p=deliverable%2Flinux.git 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 Signed-off-by: Joerg Roedel --- 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; }