4d914a0321
P46 migrated ac97d to pci_allocate_interrupt_vector but missed adding to the pcid_handle parameter. This caused build failure: cannot borrow pcid_handle as mutable.
6 lines
254 B
Diff
6 lines
254 B
Diff
--- a/drivers/audio/ac97d/src/main.rs
|
|
+++ b/drivers/audio/ac97d/src/main.rs
|
|
@@ -20 +20 @@ fn main() {
|
|
-fn daemon(daemon: daemon::Daemon, pcid_handle: PciFunctionHandle) -> ! {
|
|
+fn daemon(daemon: daemon::Daemon, mut pcid_handle: PciFunctionHandle) -> ! {
|