Displaying 1 result from an estimated 1 matches for "rtl8139_basicmodectrl_write".
2008 Feb 07
0
[PATCH] ioemu: use POSIX int type
...type
(already upstream)
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
diff -r 2adf154d17c2 tools/ioemu/hw/rtl8139.c
--- a/tools/ioemu/hw/rtl8139.c Thu Feb 07 10:47:20 2008 +0000
+++ b/tools/ioemu/hw/rtl8139.c Thu Feb 07 12:04:07 2008 +0000
@@ -1468,7 +1468,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))
{
_______________________________________________
Xen-devel mai...