diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-08-16 15:12:21 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@gmail.com> | 2012-09-14 08:21:28 +0100 |
commit | 52a8e968a325f5dbbdceba06aaad2ac94f30da37 (patch) | |
tree | 724585078c43cee5b53ff4deddd3f5628d96f3e1 /hw | |
parent | aade7b91d5afce84b1328f0dbbc77452bde00d1f (diff) | |
download | qemu-52a8e968a325f5dbbdceba06aaad2ac94f30da37.zip qemu-52a8e968a325f5dbbdceba06aaad2ac94f30da37.tar.gz qemu-52a8e968a325f5dbbdceba06aaad2ac94f30da37.tar.bz2 |
Spelling fixes in comments and macro names (ressource -> resource)
Macro XEN_HOST_PCI_RESOURCE_BUFFER_SIZE is only used locally,
so the change should be safe.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xen-host-pci-device.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xen-host-pci-device.c b/hw/xen-host-pci-device.c index e7ff680..743b37b 100644 --- a/hw/xen-host-pci-device.c +++ b/hw/xen-host-pci-device.c @@ -47,13 +47,13 @@ static int xen_host_pci_sysfs_path(const XenHostPCIDevice *d, } -/* This size should be enough to read the first 7 lines of a ressource file */ -#define XEN_HOST_PCI_RESSOURCE_BUFFER_SIZE 400 +/* This size should be enough to read the first 7 lines of a resource file */ +#define XEN_HOST_PCI_RESOURCE_BUFFER_SIZE 400 static int xen_host_pci_get_resource(XenHostPCIDevice *d) { int i, rc, fd; char path[PATH_MAX]; - char buf[XEN_HOST_PCI_RESSOURCE_BUFFER_SIZE]; + char buf[XEN_HOST_PCI_RESOURCE_BUFFER_SIZE]; unsigned long long start, end, flags, size; char *endptr, *s; uint8_t type; |