git: 299bb57d9b71 - main - bhyve: style, add comma to the last line of designated initializer
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 01 Apr 2025 22:59:50 UTC
The branch main has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=299bb57d9b71be2b033a92033268d8b1c732e4fe
commit 299bb57d9b71be2b033a92033268d8b1c732e4fe
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-12-19 15:57:43 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2025-04-01 22:59:16 +0000
bhyve: style, add comma to the last line of designated initializer
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
---
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 881bfa2ef946..87283325600c 100644
--- a/sys/amd64/vmm/amd/amdvi_hw.c
+++ b/sys/amd64/vmm/amd/amdvi_hw.c
@@ -1378,5 +1378,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,
};