提交 64c7b9d8 编写于 作者: S Stefan Weil 提交者: Stefan Hajnoczi

Fix typos in comments (accessable -> accessible, priveleged -> privileged)

Signed-off-by: NStefan Weil <weil@mail.berlios.de>
Signed-off-by: NStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
上级 5225d669
...@@ -23,9 +23,9 @@ ...@@ -23,9 +23,9 @@
* All register has 2 addresses: in 0xff000000 - 0xffffffff (P4 address) and * All register has 2 addresses: in 0xff000000 - 0xffffffff (P4 address) and
* in 0x1f000000 - 0x1fffffff (area 7 address) * in 0x1f000000 - 0x1fffffff (area 7 address)
*/ */
#define SH7750_P4_BASE 0xff000000 /* Accessable only in #define SH7750_P4_BASE 0xff000000 /* Accessible only in
priveleged mode */ privileged mode */
#define SH7750_A7_BASE 0x1f000000 /* Accessable only using TLB */ #define SH7750_A7_BASE 0x1f000000 /* Accessible only using TLB */
#define SH7750_P4_REG32(ofs) (SH7750_P4_BASE + (ofs)) #define SH7750_P4_REG32(ofs) (SH7750_P4_BASE + (ofs))
#define SH7750_A7_REG32(ofs) (SH7750_A7_BASE + (ofs)) #define SH7750_A7_REG32(ofs) (SH7750_A7_BASE + (ofs))
......
...@@ -101,7 +101,7 @@ typedef struct CPUCRISState { ...@@ -101,7 +101,7 @@ typedef struct CPUCRISState {
/* P0 - P15 are referred to as special registers in the docs. */ /* P0 - P15 are referred to as special registers in the docs. */
uint32_t pregs[16]; uint32_t pregs[16];
/* Pseudo register for the PC. Not directly accessable on CRIS. */ /* Pseudo register for the PC. Not directly accessible on CRIS. */
uint32_t pc; uint32_t pc;
/* Pseudo register for the kernel stack. */ /* Pseudo register for the kernel stack. */
......
...@@ -322,7 +322,7 @@ void check_file_unfixed_eof_mmaps(void) ...@@ -322,7 +322,7 @@ void check_file_unfixed_eof_mmaps(void)
fail_unless (p1[(test_fsize & pagemask) / sizeof *p1 - 1] fail_unless (p1[(test_fsize & pagemask) / sizeof *p1 - 1]
== ((test_fsize - sizeof *p1) / sizeof *p1)); == ((test_fsize - sizeof *p1) / sizeof *p1));
/* Verify that the end of page is accessable and zeroed. */ /* Verify that the end of page is accessible and zeroed. */
cp = (void *) p1; cp = (void *) p1;
fail_unless (cp[pagesize - 4] == 0); fail_unless (cp[pagesize - 4] == 0);
munmap (p1, pagesize); munmap (p1, pagesize);
...@@ -365,7 +365,7 @@ void check_file_fixed_eof_mmaps(void) ...@@ -365,7 +365,7 @@ void check_file_fixed_eof_mmaps(void)
fail_unless (p1[(test_fsize & pagemask) / sizeof *p1 - 1] fail_unless (p1[(test_fsize & pagemask) / sizeof *p1 - 1]
== ((test_fsize - sizeof *p1) / sizeof *p1)); == ((test_fsize - sizeof *p1) / sizeof *p1));
/* Verify that the end of page is accessable and zeroed. */ /* Verify that the end of page is accessible and zeroed. */
cp = (void *)p1; cp = (void *)p1;
fail_unless (cp[pagesize - 4] == 0); fail_unless (cp[pagesize - 4] == 0);
munmap (p1, pagesize); munmap (p1, pagesize);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册