Spelling fixes in comments (it's -> its)

* it's -> its (fixed for all files)
* dont -> don't (only fixed in a line which was touched by the previous fix)
* distrub -> disturb (fixed in the same line)

Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
Stefan Weil 2012-02-26 18:46:12 +01:00 committed by Stefan Hajnoczi
parent 0ea5c0cdb0
commit 93148aa5c3
9 changed files with 10 additions and 10 deletions

2
configure vendored
View File

@ -232,7 +232,7 @@ for opt do
done done
# OS specific # OS specific
# Using uname is really, really broken. Once we have the right set of checks # Using uname is really, really broken. Once we have the right set of checks
# we can eliminate it's usage altogether # we can eliminate its usage altogether.
cc="${CC-${cross_prefix}gcc}" cc="${CC-${cross_prefix}gcc}"
ar="${AR-${cross_prefix}ar}" ar="${AR-${cross_prefix}ar}"

View File

@ -888,7 +888,7 @@ static void exynos4210_ltick_event(void *opaque)
static uint64_t time2[2] = {0}; static uint64_t time2[2] = {0};
#endif #endif
/* Call tick_timer event handler, it will update it's tcntb and icntb */ /* Call tick_timer event handler, it will update its tcntb and icntb. */
exynos4210_ltick_timer_event(&s->tick_timer); exynos4210_ltick_timer_event(&s->tick_timer);
/* get tick_timer cnt */ /* get tick_timer cnt */

View File

@ -5,7 +5,7 @@
* *
* Written by Alon Levy, with contributions from Robert Relyea. * Written by Alon Levy, with contributions from Robert Relyea.
* *
* Based on usb-serial.c, see it's copyright and attributions below. * Based on usb-serial.c, see its copyright and attributions below.
* *
* This work is licensed under the terms of the GNU GPL, version 2.1 or later. * This work is licensed under the terms of the GNU GPL, version 2.1 or later.
* See the COPYING file in the top-level directory. * See the COPYING file in the top-level directory.

View File

@ -124,7 +124,7 @@ typedef struct InterfaceInfo InterfaceInfo;
* *
* Once all of the parent classes have been initialized, #TypeInfo::class_init * Once all of the parent classes have been initialized, #TypeInfo::class_init
* is called to let the class being instantiated provide default initialize for * is called to let the class being instantiated provide default initialize for
* it's virtual functions. Here is how the above example might be modified * its virtual functions. Here is how the above example might be modified
* to introduce an overridden virtual function: * to introduce an overridden virtual function:
* *
* <example> * <example>
@ -527,7 +527,7 @@ Type type_register_static(const TypeInfo *info);
* type_register: * type_register:
* @info: The #TypeInfo of the new type * @info: The #TypeInfo of the new type
* *
* Unlike type_register_static(), this call does not require @info or it's * Unlike type_register_static(), this call does not require @info or its
* string members to continue to exist after the call returns. * string members to continue to exist after the call returns.
* *
* Returns: 0 on failure, the new #Type on success. * Returns: 0 on failure, the new #Type on success.

View File

@ -35,7 +35,7 @@
#include <sys/eventfd.h> #include <sys/eventfd.h>
#endif #endif
/* KVM uses PAGE_SIZE in it's definition of COALESCED_MMIO_MAX */ /* KVM uses PAGE_SIZE in its definition of COALESCED_MMIO_MAX */
#define PAGE_SIZE TARGET_PAGE_SIZE #define PAGE_SIZE TARGET_PAGE_SIZE
//#define DEBUG_KVM //#define DEBUG_KVM

View File

@ -129,7 +129,7 @@ event_thread(void *arg)
vevent_delete(event); vevent_delete(event);
continue; continue;
} }
/* this reader hasn't been told it's status from qemu yet, wait for /* this reader hasn't been told its status from qemu yet, wait for
* that status */ * that status */
while (pending_reader != NULL) { while (pending_reader != NULL) {
qemu_cond_wait(&pending_reader_condition, &pending_reader_lock); qemu_cond_wait(&pending_reader_condition, &pending_reader_lock);

View File

@ -2700,7 +2700,7 @@ get_sigframe(struct target_sigaction *ka, CPUState *regs, size_t frame_size)
sp = regs->active_tc.gpr[29]; sp = regs->active_tc.gpr[29];
/* /*
* FPU emulator may have it's own trampoline active just * FPU emulator may have its own trampoline active just
* above the user stack, 16-bytes before the next lowest * above the user stack, 16-bytes before the next lowest
* 16 byte boundary. Try to avoid trashing it. * 16 byte boundary. Try to avoid trashing it.
*/ */

View File

@ -47,7 +47,7 @@ typedef int (QEMUFileGetBufferFunc)(void *opaque, uint8_t *buf,
*/ */
typedef int (QEMUFileCloseFunc)(void *opaque); typedef int (QEMUFileCloseFunc)(void *opaque);
/* Called to determine if the file has exceeded it's bandwidth allocation. The /* Called to determine if the file has exceeded its bandwidth allocation. The
* bandwidth capping is a soft limit, not a hard limit. * bandwidth capping is a soft limit, not a hard limit.
*/ */
typedef int (QEMUFileRateLimit)(void *opaque); typedef int (QEMUFileRateLimit)(void *opaque);

View File

@ -1930,7 +1930,7 @@ target_ulong helper_evpe(void)
do { do {
if (other_cpu != env if (other_cpu != env
/* If the VPE is WFI, dont distrub it's sleep. */ /* If the VPE is WFI, don't disturb its sleep. */
&& !mips_vpe_is_wfi(other_cpu)) { && !mips_vpe_is_wfi(other_cpu)) {
/* Enable the VPE. */ /* Enable the VPE. */
other_cpu->mvp->CP0_MVPControl |= (1 << CP0MVPCo_EVP); other_cpu->mvp->CP0_MVPControl |= (1 << CP0MVPCo_EVP);