[xtensa-cvscommit] linux/include/asm-xtensa mmu_context.h,1.5,1.6 page.h,1.4,1.5
Brought to you by:
zankel
|
From: <ma...@us...> - 2003-04-01 19:59:21
|
Update of /cvsroot/xtensa/linux/include/asm-xtensa
In directory sc8-pr-cvs1:/tmp/cvs-serv31643
Modified Files:
mmu_context.h page.h
Log Message:
Trivial comment fixes.
Index: mmu_context.h
===================================================================
RCS file: /cvsroot/xtensa/linux/include/asm-xtensa/mmu_context.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** mmu_context.h 11 Mar 2003 19:17:00 -0000 1.5
--- mmu_context.h 1 Apr 2003 19:59:17 -0000 1.6
***************
*** 13,17 ****
* Copyright (C) 2001 Tensilica Inc.
* Authors: Joe Taylor <jo...@te..., jo...@ya...>
! * Marc Gauthier
*/
--- 13,17 ----
* Copyright (C) 2001 Tensilica Inc.
* Authors: Joe Taylor <jo...@te..., jo...@ya...>
! * Marc Gauthier <ma...@te...> <ma...@al...>
*/
***************
*** 52,56 ****
value. mm->context has the same meaning. When it comes time to
write the asid_cache or mm->context values to the RASID special
! register, we first shift the value left by 8, the insert the value.
ASID[0] always contains the kernel's asid value, and we reserve
three other asid values that we never assign to user tasks. */
--- 52,56 ----
value. mm->context has the same meaning. When it comes time to
write the asid_cache or mm->context values to the RASID special
! register, we first shift the value left by 8, then insert the value.
ASID[0] always contains the kernel's asid value, and we reserve
three other asid values that we never assign to user tasks. */
Index: page.h
===================================================================
RCS file: /cvsroot/xtensa/linux/include/asm-xtensa/page.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** page.h 28 Feb 2003 01:53:10 -0000 1.4
--- page.h 1 Apr 2003 19:59:17 -0000 1.5
***************
*** 66,72 ****
* These are used to make use of C type-checking..
*/
! typedef struct { unsigned long pte; } pte_t;
! typedef struct { unsigned long pmd; } pmd_t;
! typedef struct { unsigned long pgd; } pgd_t;
typedef struct { unsigned long pgprot; } pgprot_t;
--- 66,72 ----
* These are used to make use of C type-checking..
*/
! typedef struct { unsigned long pte; } pte_t; /* page table entry */
! typedef struct { unsigned long pmd; } pmd_t; /* PMD table entry */
! typedef struct { unsigned long pgd; } pgd_t; /* PGD table entry */
typedef struct { unsigned long pgprot; } pgprot_t;
|