(
&mut self,
notification_type: AcpiNotificationFlags,
)
| 106 | } |
| 107 | |
| 108 | pub fn notify( |
| 109 | &mut self, |
| 110 | notification_type: AcpiNotificationFlags, |
| 111 | ) -> Result<(), std::io::Error> { |
| 112 | self.notification_type |= notification_type; |
| 113 | self.interrupt.trigger(0) |
| 114 | } |
| 115 | |
| 116 | pub fn irq(&self) -> u32 { |
| 117 | self.ged_irq |