public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [mmotm 10 Oct][PATCH 1/2] fix build error of git-tip
@ 2008-10-12 13:39 KOSAKI Motohiro
  2008-10-12 13:41 ` [mmotm 10 Oct][PATCH 2/2] fix build error of vmscan KOSAKI Motohiro
  2008-10-12 13:42 ` [mmotm 10 Oct][PATCH 1/2] fix build error of git-tip KOSAKI Motohiro
  0 siblings, 2 replies; 5+ messages in thread
From: KOSAKI Motohiro @ 2008-10-12 13:39 UTC (permalink / raw)
  To: Yinghai Lu, Ingo Molnar, Andrew Morton; +Cc: kosaki.motohiro, LKML


Patch name: git-tip-fix.patch
Patch against: mmotm 10 Oct
Applied after: git-tip.patch

-----------
git-tip can't build on ia64 because __acpi_unmap_table() function tyep is wrong.
Then it cause following build error.


  CC      arch/ia64/kernel/acpi.o
arch/ia64/kernel/acpi.c:180: error: conflicting types for '__acpi_unmap_table'
include/linux/acpi.h:82: error: previous declaration of '__acpi_unmap_table' was here
make[1]: *** [arch/ia64/kernel/acpi.o] Error 1
make: *** [arch/ia64/kernel] Error 2


Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
CC: Yinghai Lu <yhlu.kernel@gmail.com>
CC: Ingo Molnar <mingo@elte.hu>

---
 arch/ia64/kernel/acpi.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: b/arch/ia64/kernel/acpi.c
===================================================================
--- a/arch/ia64/kernel/acpi.c
+++ b/arch/ia64/kernel/acpi.c
@@ -176,7 +176,7 @@ char *__init __acpi_map_table(unsigned l
 	return __va(phys_addr);
 }
 
-char *__init __acpi_unmap_table(unsigned long virt_addr, unsigned long size)
+void __init __acpi_unmap_table(char *virt_addr, unsigned long size)
 {
 }
 



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-10-14  0:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-12 13:39 [mmotm 10 Oct][PATCH 1/2] fix build error of git-tip KOSAKI Motohiro
2008-10-12 13:41 ` [mmotm 10 Oct][PATCH 2/2] fix build error of vmscan KOSAKI Motohiro
2008-10-12 15:28   ` Rik van Riel
2008-10-14  0:25   ` Hugh Dickins
2008-10-12 13:42 ` [mmotm 10 Oct][PATCH 1/2] fix build error of git-tip KOSAKI Motohiro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox