From 810ed7e887b285117cbd7cddefa1662999e2f4c2 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Mon, 12 Apr 2021 17:25:04 +0000 Subject: [PATCH] vmm: interrupt: drop unnecessary type from impl The original code had a generic type E. It was later replaced by a concrete type. The code should have been simplified when the replacement happened. Signed-off-by: Wei Liu --- vmm/src/interrupt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmm/src/interrupt.rs b/vmm/src/interrupt.rs index 04852dfa1..1dbb831c1 100644 --- a/vmm/src/interrupt.rs +++ b/vmm/src/interrupt.rs @@ -115,7 +115,7 @@ impl MsiInterruptGroup { } } -impl MsiInterruptGroup { +impl MsiInterruptGroup { fn new( vm: Arc, gsi_msi_routes: Arc>>>,