diff options
author | Hannes Eder <hannes@hanneseder.net> | 2009-03-05 06:12:44 -0500 |
---|---|---|
committer | Joerg Roedel <joerg.roedel@amd.com> | 2009-03-05 06:12:44 -0500 |
commit | ff2c8a4167eb143c5e2a03148fa996978938e8d7 (patch) | |
tree | 2d828a210870cf4befff4e93ee24a210fdfcfe60 /drivers/base | |
parent | 5f812de63ce515265ebd84e932c762136924ab84 (diff) |
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 'drivers/base')
-rw-r--r-- | drivers/base/iommu.c | 2 |
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) | |||
31 | iommu_ops = ops; | 31 | iommu_ops = ops; |
32 | } | 32 | } |
33 | 33 | ||
34 | bool iommu_found() | 34 | bool iommu_found(void) |
35 | { | 35 | { |
36 | return iommu_ops != NULL; | 36 | return iommu_ops != NULL; |
37 | } | 37 | } |