diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-03 19:51:57 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-03 19:51:57 +0000 |
commit | 1235fc066ac7146bb3ed8ae97efeb710bb57644a (patch) | |
tree | 6c9b3759440f9030b7ee796b69af5467a8c26c6a /hw | |
parent | c8a706fe6242a553960ccc3071a4e75ceba6f3d2 (diff) |
Spelling fixes, by Stefan Weil.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4655 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/alpha_palcode.c | 2 | ||||
-rw-r--r-- | hw/integratorcp.c | 2 | ||||
-rw-r--r-- | hw/realview.c | 2 | ||||
-rw-r--r-- | hw/scsi-disk.c | 2 | ||||
-rw-r--r-- | hw/versatilepb.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/hw/alpha_palcode.c b/hw/alpha_palcode.c index 50ce92cb83..3dfb1a74f9 100644 --- a/hw/alpha_palcode.c +++ b/hw/alpha_palcode.c @@ -55,7 +55,7 @@ pal_handler_t pal_handlers[] = { }; #if 0 -/* One must explicitely check that the TB is valid and the FOE bit is reset */ +/* One must explicitly check that the TB is valid and the FOE bit is reset */ static void update_itb (void) { /* This writes into a temp register, not the actual one */ diff --git a/hw/integratorcp.c b/hw/integratorcp.c index 104796c52b..4ac7c0c961 100644 --- a/hw/integratorcp.c +++ b/hw/integratorcp.c @@ -494,7 +494,7 @@ static void integratorcp_init(ram_addr_t ram_size, int vga_ram_size, } ram_offset = qemu_ram_alloc(ram_size); /* ??? On a real system the first 1Mb is mapped as SSRAM or boot flash. */ - /* ??? RAM shoud repeat to fill physical memory space. */ + /* ??? RAM should repeat to fill physical memory space. */ /* SDRAM at address zero*/ cpu_register_physical_memory(0, ram_size, ram_offset | IO_MEM_RAM); /* And again at address 0x80000000 */ diff --git a/hw/realview.c b/hw/realview.c index 16aa62bee3..595e7ec8dc 100644 --- a/hw/realview.c +++ b/hw/realview.c @@ -64,7 +64,7 @@ static void realview_init(ram_addr_t ram_size, int vga_ram_size, } } - /* ??? RAM shoud repeat to fill physical memory space. */ + /* ??? RAM should repeat to fill physical memory space. */ /* SDRAM at address zero. */ cpu_register_physical_memory(0, ram_size, IO_MEM_RAM); diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c index 44462d4351..dcf03291dc 100644 --- a/hw/scsi-disk.c +++ b/hw/scsi-disk.c @@ -662,7 +662,7 @@ static int32_t scsi_send_command(SCSIDevice *d, uint32_t tag, case 0x46: DPRINTF("Get Configuration (rt %d, maxlen %d)\n", buf[1] & 3, len); memset(outbuf, 0, 8); - /* ??? This shoud probably return much more information. For now + /* ??? This should probably return much more information. For now just return the basic header indicating the CD-ROM profile. */ outbuf[7] = 8; // CD-ROM r->buf_len = 8; diff --git a/hw/versatilepb.c b/hw/versatilepb.c index 1825f91b75..bfbc0312a0 100644 --- a/hw/versatilepb.c +++ b/hw/versatilepb.c @@ -182,7 +182,7 @@ static void versatile_init(ram_addr_t ram_size, int vga_ram_size, fprintf(stderr, "Unable to find CPU definition\n"); exit(1); } - /* ??? RAM shoud repeat to fill physical memory space. */ + /* ??? RAM should repeat to fill physical memory space. */ /* SDRAM at address zero. */ cpu_register_physical_memory(0, ram_size, IO_MEM_RAM); |