diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2011-05-23 22:36:17 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-05-23 22:36:17 +0200 |
commit | 6eba5c82cfeb28bd5056ad0e8923d98519181939 (patch) | |
tree | ab4aa1a9d61cfa667eed3e086be2284076f64aef /exec.c | |
parent | 5db070eb1ab902572e46ed09e5947ffe504522bc (diff) | |
parent | a57d23e4f7e7e81c839a7b53a973ac71eefe91da (diff) |
Merge branch 'trivial-patches' of git://repo.or.cz/qemu/stefanha
* 'trivial-patches' of git://repo.or.cz/qemu/stefanha:
Fix typos in comments (chek -> check)
hw/sd.c: Don't complain about SDIO commands CMD52/CMD53
hw/realview.c: Remove duplicate #include line
piix_pci: fix piix3_set_irq_pic()
Diffstat (limited to 'exec.c')
-rw-r--r-- | exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2061,7 +2061,7 @@ void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end, /* we modify the TLB cache so that the dirty bit will be set again when accessing the range */ start1 = (unsigned long)qemu_safe_ram_ptr(start); - /* Chek that we don't span multiple blocks - this breaks the + /* Check that we don't span multiple blocks - this breaks the address comparisons below. */ if ((unsigned long)qemu_safe_ram_ptr(end - 1) - start1 != (end - 1) - start) { |