diff options
author | Jürg Billeter <j@bitron.ch> | 2015-02-07 18:13:21 +0100 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2015-06-03 09:05:35 -0400 |
commit | dee92c7805e0cc646feb9b7e57451848ce48be37 (patch) | |
tree | 11ddeb341da6c8bf718708d09681bc0543d08b66 /hw | |
parent | 19da4355ee975c714f0f11d31c8b41c3fdabd913 (diff) |
int10: Fix error check for pci_device_map_legacy
pci_device_map_legacy returns 0 on success.
Signed-off-by: Jürg Billeter <j@bitron.ch>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
(cherry picked from commit 0a78b599b34cc8b5fe6fe82f90e90234e8ab7a56)
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xfree86/int10/generic.c | 2 | ||||
-rw-r--r-- | hw/xfree86/os-support/linux/int10/linux.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/int10/generic.c b/hw/xfree86/int10/generic.c index 012d1941a..8d5c4daf3 100644 --- a/hw/xfree86/int10/generic.c +++ b/hw/xfree86/int10/generic.c @@ -104,7 +104,7 @@ readIntVec(struct pci_device *dev, unsigned char *buf, int len) { void *map; - if (!pci_device_map_legacy(dev, 0, len, 0, &map)) + if (pci_device_map_legacy(dev, 0, len, 0, &map)) return FALSE; memcpy(buf, map, len); diff --git a/hw/xfree86/os-support/linux/int10/linux.c b/hw/xfree86/os-support/linux/int10/linux.c index 79b9a8858..6ca118f25 100644 --- a/hw/xfree86/os-support/linux/int10/linux.c +++ b/hw/xfree86/os-support/linux/int10/linux.c @@ -75,7 +75,7 @@ readLegacy(struct pci_device *dev, unsigned char *buf, int base, int len) { void *map; - if (!pci_device_map_legacy(dev, base, len, 0, &map)) + if (pci_device_map_legacy(dev, base, len, 0, &map)) return FALSE; memcpy(buf, map, len); |