iommu/fsl: Add void declarations in zero-arg functions.

Added explicit void declarations to zero-argument function headers.
The following coccinelle script was used:
@addvoid@
identifier f;
@@

f(
+ void
 ) { ... }

Signed-off-by: Chi Pham <fempsci@gmail.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
Chi Pham
2014-07-03 15:03:01 +02:00
committed by Joerg Roedel
parent 34df6ab795
commit f683367ebd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ struct gen_pool *spaace_pool;
* subwindow count per liodn. * subwindow count per liodn.
* *
*/ */
u32 pamu_get_max_subwin_cnt() u32 pamu_get_max_subwin_cnt(void)
{ {
return max_subwindow_count; return max_subwindow_count;
} }
+1 -1
View File
@@ -1156,7 +1156,7 @@ static struct iommu_ops fsl_pamu_ops = {
.remove_device = fsl_pamu_remove_device, .remove_device = fsl_pamu_remove_device,
}; };
int pamu_domain_init() int pamu_domain_init(void)
{ {
int ret = 0; int ret = 0;