Skip to content

Commit

Permalink
Merge remote-tracking branch 'mjt/trivial-patches' into staging
Browse files Browse the repository at this point in the history
* mjt/trivial-patches:
  audio/mixeng_template.h: fix inline declaration
  misc: Spelling and grammar fixes in comments
  docs/ccid.txt: fix the typo
  qapi: fix documentation example
  .gitignore: ignore qmp-commands.txt
  misc: New spelling fixes in comments
  configure: create fsdev/ directory

Message-id: [email protected]
Signed-off-by: Anthony Liguori <[email protected]>
  • Loading branch information
aliguori committed Oct 31, 2013
2 parents 1ba1905 + 203cea2 commit ef5cfe5
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ qemu-ga
qemu-bridge-helper
qemu-monitor.texi
vscclient
QMP/qmp-commands.txt
qmp-commands.txt
test-bitops
test-coroutine
test-int128
Expand Down
4 changes: 2 additions & 2 deletions audio/mixeng_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#define IN_T glue (glue (ITYPE, BSIZE), _t)

#ifdef FLOAT_MIXENG
static mixeng_real inline glue (conv_, ET) (IN_T v)
static inline mixeng_real glue (conv_, ET) (IN_T v)
{
IN_T nv = ENDIAN_CONVERT (v);

Expand All @@ -54,7 +54,7 @@ static mixeng_real inline glue (conv_, ET) (IN_T v)
#endif
}

static IN_T inline glue (clip_, ET) (mixeng_real v)
static inline IN_T glue (clip_, ET) (mixeng_real v)
{
if (v >= 0.5) {
return IN_MAX;
Expand Down
2 changes: 1 addition & 1 deletion block/iscsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ static int64_t coroutine_fn iscsi_co_get_block_status(BlockDriverState *bs,
/* in case the get_lba_status_callout fails (i.e.
* because the device is busy or the cmd is not
* supported) we pretend all blocks are allocated
* for backwards compatiblity */
* for backwards compatibility */
goto out;
}

Expand Down
1 change: 1 addition & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -4654,6 +4654,7 @@ fi

# build tree in object directory in case the source is not in the current directory
DIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32 tests/libqos tests/qapi-schema tests/tcg/xtensa tests/qemu-iotests"
DIRS="$DIRS fsdev"
DIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas pc-bios/s390-ccw"
DIRS="$DIRS roms/seabios roms/vgabios"
DIRS="$DIRS qapi-generated"
Expand Down
2 changes: 1 addition & 1 deletion docs/ccid.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Configuring and building:
Assuming you have a working smartcard on the host with the current
user, using NSS, qemu acts as another NSS client using ccid-card-emulated:

qemu -usb -device usb-ccid -device ccid-card-emualated
qemu -usb -device usb-ccid -device ccid-card-emulated

4. Using ccid-card-emulated with certificates

Expand Down
2 changes: 1 addition & 1 deletion docs/qapi-code-gen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ This example allows using both of the following example objects:
{ "file": "my_existing_block_device_id" }
{ "file": { "driver": "file",
"readonly": false,
'filename': "/tmp/mydisk.qcow2" } }
"filename": "/tmp/mydisk.qcow2" } }


=== Commands ===
Expand Down
2 changes: 1 addition & 1 deletion hw/ppc/spapr.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ int spapr_allocate_irq_block(int num, bool lsi, bool msi)
* it has to be aligned to num to support multiple
* MSI vectors. MSI-X is not affected by this.
* The hint is used for the first IRQ, the rest should
* be allocated continously.
* be allocated continuously.
*/
if (msi) {
assert((num == 1) || (num == 2) || (num == 4) ||
Expand Down
2 changes: 1 addition & 1 deletion qapi-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1914,7 +1914,7 @@
#
# Since: 0.14.0
#
# Notes: This command only exists as a stop-gap. It's use is highly
# Notes: This command only exists as a stop-gap. Its use is highly
# discouraged. The semantics of this command are not guaranteed.
#
# Known limitations:
Expand Down
2 changes: 1 addition & 1 deletion slirp/if.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ if_output(struct socket *so, struct mbuf *ifm)

/*
* Send a packet
* We choose a packet based on it's position in the output queues;
* We choose a packet based on its position in the output queues;
* If there are packets on the fastq, they are sent FIFO, before
* everything else. Otherwise we choose the first packet from the
* batchq and send it. the next packet chosen will be from the session
Expand Down
2 changes: 1 addition & 1 deletion target-alpha/translate.c
Original file line number Diff line number Diff line change
Expand Up @@ -1601,7 +1601,7 @@ static ExitStatus gen_call_pal(DisasContext *ctx, int palcode)
tcg_temp_free(pc);

/* Since the destination is running in PALmode, we don't really
need the page permissions check. We'll see the existance of
need the page permissions check. We'll see the existence of
the page when we create the TB, and we'll flush all TBs if
we change the PAL base register. */
if (!ctx->singlestep_enabled && !(ctx->tb->cflags & CF_LAST_IO)) {
Expand Down
4 changes: 2 additions & 2 deletions tests/test-throttle.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ LeakyBucket bkt;
ThrottleConfig cfg;
ThrottleState ts;

/* usefull function */
/* useful function */
static bool double_cmp(double x, double y)
{
return fabsl(x - y) < 1e-6;
Expand Down Expand Up @@ -320,7 +320,7 @@ static void test_have_timer(void)
/* zero the structure */
memset(&ts, 0, sizeof(ts));

/* no timer set shoudl return false */
/* no timer set should return false */
g_assert(!throttle_have_timer(&ts));

/* init the structure */
Expand Down
2 changes: 1 addition & 1 deletion ui/vnc-enc-zywrle.h
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ static inline void harr(int8_t *px0, int8_t *px1)
|L1H0H1H0|L1H0H1H0|L1H0H1H0|L1H0H1H0| : level 1
In this method, H/L and X0/X1 is always same position.
This lead us to more speed and less memory.
This leads us to more speed and less memory.
Of cause, the result of both method is quite same
because it's only difference that coefficient position.
*/
Expand Down

0 comments on commit ef5cfe5

Please sign in to comment.