enable fatal warnings

. kernel: fix some arm warnings
	. turn of fatal warnings for texinfo

Change-Id: I71e228c87a7226adbbd940ccb1439e042d7b6e9a
This commit is contained in:
Ben Gras
2013-08-26 16:43:16 +00:00
parent dbafdf6692
commit 74bc88581c
5 changed files with 12 additions and 8 deletions

View File

@@ -45,7 +45,7 @@ void
arch_padconf_init(void)
{
kern_phys_map_ptr(omap_padconf.base, omap_padconf.size,
&padconf_phys_map, &omap_padconf.base);
&padconf_phys_map, (vir_bytes) &omap_padconf.base);
return;
}

View File

@@ -41,7 +41,7 @@ omap3_rtc_init(void)
{
#ifdef AM335X
kern_phys_map_ptr(omap_rtc.base, omap_rtc.size, &rtc_phys_map,
&omap_rtc.base);
(vir_bytes) &omap_rtc.base);
#endif /* AM335X */
}