* [Qemu-devel] [PATCH] type fixup
@ 2007-11-09 15:49 Samuel Thibault
0 siblings, 0 replies; only message in thread
From: Samuel Thibault @ 2007-11-09 15:49 UTC (permalink / raw)
To: qemu-devel
Here is a trivial patch to make only use of posix types in drivers, not
types from the softfloat header.
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Index: hw/rtl8139.c
===================================================================
RCS file: /sources/qemu/qemu/hw/rtl8139.c,v
retrieving revision 1.13
diff -u -p -r1.13 rtl8139.c
--- hw/rtl8139.c 17 Sep 2007 08:09:48 -0000 1.13
+++ hw/rtl8139.c 9 Nov 2007 15:44:06 -0000
@@ -1464,7 +1464,7 @@ static void rtl8139_BasicModeCtrl_write(
DEBUG_PRINT(("RTL8139: BasicModeCtrl register write(w) val=0x%04x\n", val));
/* mask unwriteable bits */
- uint32 mask = 0x4cff;
+ uint32_t mask = 0x4cff;
if (1 || !rtl8139_config_writeable(s))
{
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-11-09 15:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-09 15:49 [Qemu-devel] [PATCH] type fixup Samuel Thibault
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).