From: Kenn H. <ke...@us...> - 2002-12-12 01:43:08
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/mm In directory sc8-pr-cvs1:/tmp/cvs-serv13160/arch/vax/mm Modified Files: init.c ioremap.c Log Message: TLB, i-cache and d-cache flushing macros and functions now have their own header files, and are no longer automatically pulled in via <asm/pgalloc.h> Index: init.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/mm/init.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- init.c 2 Dec 2002 00:00:23 -0000 1.6 +++ init.c 12 Dec 2002 01:19:20 -0000 1.7 @@ -13,6 +13,7 @@ #include <asm/pgtable.h> #include <asm/pgalloc.h> #include <asm/rpb.h> +#include <asm/tlbflush.h> #define VAX_INIT_DEBUG Index: ioremap.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/mm/ioremap.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ioremap.c 20 May 2002 00:33:34 -0000 1.4 +++ ioremap.c 12 Dec 2002 01:19:20 -0000 1.5 @@ -49,6 +49,7 @@ #include <asm/page.h> #include <asm/pgtable.h> #include <asm/pgalloc.h> +#include <asm/tlbflush.h> /* Defined in head.S */ extern pte_t *iomap_base; |