* [Qemu-devel] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx)
@ 2011-05-22 12:02 Stefan Weil
2011-05-22 12:02 ` [Qemu-devel] [PATCH 2/2] Fix spelling in comment (additon -> addition) Stefan Weil
2011-05-24 11:32 ` [Qemu-devel] [Qemu-trivial] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx) Stefan Hajnoczi
0 siblings, 2 replies; 5+ messages in thread
From: Stefan Weil @ 2011-05-22 12:02 UTC (permalink / raw)
To: QEMU Developers; +Cc: qemu-trivial
Thanks to Tobias Hoffmann <th55@gmx.de> for this patch.
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
---
hw/pflash_cfi02.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/hw/pflash_cfi02.c b/hw/pflash_cfi02.c
index 8fdafe6..725cd1e 100644
--- a/hw/pflash_cfi02.c
+++ b/hw/pflash_cfi02.c
@@ -188,7 +188,7 @@ static uint32_t pflash_read (pflash_t *pfl, target_phys_addr_t offset,
default:
goto flash_read;
}
- DPRINTF("%s: ID " TARGET_FMT_pld " %x\n", __func__, boff, ret);
+ DPRINTF("%s: ID " TARGET_FMT_plx " %x\n", __func__, boff, ret);
break;
case 0xA0:
case 0x10:
--
1.7.2.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH 2/2] Fix spelling in comment (additon -> addition)
2011-05-22 12:02 [Qemu-devel] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx) Stefan Weil
@ 2011-05-22 12:02 ` Stefan Weil
2011-05-24 11:32 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
2011-05-24 11:32 ` [Qemu-devel] [Qemu-trivial] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx) Stefan Hajnoczi
1 sibling, 1 reply; 5+ messages in thread
From: Stefan Weil @ 2011-05-22 12:02 UTC (permalink / raw)
To: QEMU Developers; +Cc: qemu-trivial
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
---
tcg/tcg.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tcg/tcg.h b/tcg/tcg.h
index cecef63..183a446 100644
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -129,7 +129,7 @@ typedef tcg_target_ulong TCGArg;
We use plain int by default to avoid this runtime overhead.
Users of tcg_gen_* don't need to know about any of this, and should
treat TCGv as an opaque type.
- In additon we do typechecking for different types of variables. TCGv_i32
+ In addition we do typechecking for different types of variables. TCGv_i32
and TCGv_i64 are 32/64-bit variables respectively. TCGv and TCGv_ptr
are aliases for target_ulong and host pointer sized values respectively.
*/
--
1.7.2.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx)
2011-05-22 12:02 [Qemu-devel] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx) Stefan Weil
2011-05-22 12:02 ` [Qemu-devel] [PATCH 2/2] Fix spelling in comment (additon -> addition) Stefan Weil
@ 2011-05-24 11:32 ` Stefan Hajnoczi
1 sibling, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2011-05-24 11:32 UTC (permalink / raw)
To: Stefan Weil; +Cc: qemu-trivial, QEMU Developers
On Sun, May 22, 2011 at 02:02:39PM +0200, Stefan Weil wrote:
> Thanks to Tobias Hoffmann <th55@gmx.de> for this patch.
>
> Signed-off-by: Stefan Weil <weil@mail.berlios.de>
> ---
> hw/pflash_cfi02.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
Thanks, applied to the trivial-patches tree:
http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/trivial-patches
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH 2/2] Fix spelling in comment (additon -> addition)
2011-05-22 12:02 ` [Qemu-devel] [PATCH 2/2] Fix spelling in comment (additon -> addition) Stefan Weil
@ 2011-05-24 11:32 ` Stefan Hajnoczi
0 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2011-05-24 11:32 UTC (permalink / raw)
To: Stefan Weil; +Cc: qemu-trivial, QEMU Developers
On Sun, May 22, 2011 at 02:02:40PM +0200, Stefan Weil wrote:
> Signed-off-by: Stefan Weil <weil@mail.berlios.de>
> ---
> tcg/tcg.h | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
Thanks, applied to the trivial-patches tree:
http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/trivial-patches
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx)
2011-05-29 11:36 [Qemu-devel] [PULL] Trivial patches for May 22 to May 29 2011 Stefan Hajnoczi
@ 2011-05-29 11:36 ` Stefan Hajnoczi
0 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2011-05-29 11:36 UTC (permalink / raw)
To: qemu-devel; +Cc: Anthony Liguori, Stefan Hajnoczi
From: Stefan Weil <weil@mail.berlios.de>
Thanks to Tobias Hoffmann <th55@gmx.de> for this patch.
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
hw/pflash_cfi02.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/hw/pflash_cfi02.c b/hw/pflash_cfi02.c
index 8fdafe6..725cd1e 100644
--- a/hw/pflash_cfi02.c
+++ b/hw/pflash_cfi02.c
@@ -188,7 +188,7 @@ static uint32_t pflash_read (pflash_t *pfl, target_phys_addr_t offset,
default:
goto flash_read;
}
- DPRINTF("%s: ID " TARGET_FMT_pld " %x\n", __func__, boff, ret);
+ DPRINTF("%s: ID " TARGET_FMT_plx " %x\n", __func__, boff, ret);
break;
case 0xA0:
case 0x10:
--
1.7.4.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-05-29 11:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-22 12:02 [Qemu-devel] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx) Stefan Weil
2011-05-22 12:02 ` [Qemu-devel] [PATCH 2/2] Fix spelling in comment (additon -> addition) Stefan Weil
2011-05-24 11:32 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
2011-05-24 11:32 ` [Qemu-devel] [Qemu-trivial] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx) Stefan Hajnoczi
-- strict thread matches above, loose matches on Subject: below --
2011-05-29 11:36 [Qemu-devel] [PULL] Trivial patches for May 22 to May 29 2011 Stefan Hajnoczi
2011-05-29 11:36 ` [Qemu-devel] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx) Stefan Hajnoczi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).