git: 53b2f30f9090 - stable/14 - bhyve: style, add comma to the last line of designated initializer
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 04 Apr 2025 00:54:37 UTC
The branch stable/14 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=53b2f30f9090f15a51251b8c1f86de489cd5c4b8
commit 53b2f30f9090f15a51251b8c1f86de489cd5c4b8
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-12-19 15:57:43 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2025-04-04 00:54:06 +0000
bhyve: style, add comma to the last line of designated initializer
(cherry picked from commit 299bb57d9b71be2b033a92033268d8b1c732e4fe)
---
sys/amd64/vmm/amd/amdvi_hw.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/amd64/vmm/amd/amdvi_hw.c b/sys/amd64/vmm/amd/amdvi_hw.c
index 2707109ce587..a82d55e4c9fb 100644
--- a/sys/amd64/vmm/amd/amdvi_hw.c
+++ b/sys/amd64/vmm/amd/amdvi_hw.c
@@ -1379,5 +1379,5 @@ const struct iommu_ops iommu_ops_amd = {
.remove_mapping = amdvi_remove_mapping,
.add_device = amdvi_add_device,
.remove_device = amdvi_remove_device,
- .invalidate_tlb = amdvi_invalidate_tlb
+ .invalidate_tlb = amdvi_invalidate_tlb,
};