[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] Fix typo in comment (uin32_t -> uint32_t)
From: |
Frediano Ziglio |
Subject: |
[PATCH] Fix typo in comment (uin32_t -> uint32_t) |
Date: |
Fri, 1 Mar 2024 18:55:35 +0000 |
Signed-off-by: Frediano Ziglio <frediano.ziglio@cloud.com>
---
hw/vfio/pci.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/vfio/pci.h b/hw/vfio/pci.h
index 6e64a2654e..4bb7d7d257 100644
--- a/hw/vfio/pci.h
+++ b/hw/vfio/pci.h
@@ -181,7 +181,7 @@ struct VFIOPCIDevice {
Notifier irqchip_change_notifier;
};
-/* Use uin32_t for vendor & device so PCI_ANY_ID expands and cannot match hw */
+/* Use uint32_t for vendor & device so PCI_ANY_ID expands and cannot
match hw */
static inline bool vfio_pci_is(VFIOPCIDevice *vdev, uint32_t vendor,
uint32_t device)
{
return (vendor == PCI_ANY_ID || vendor == vdev->vendor_id) &&
--
2.34.1
- [PATCH] Fix typo in comment (uin32_t -> uint32_t),
Frediano Ziglio <=