mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Kernel: Mention right parent class for AC'97's device_name
This commit is contained in:
parent
b3b9ac6201
commit
c530f74e2f
Notes:
sideshowbarker
2024-07-17 02:35:27 +09:00
Author: https://github.com/gmta Commit: https://github.com/SerenityOS/serenity/commit/c530f74e2f Pull-request: https://github.com/SerenityOS/serenity/pull/17798 Reviewed-by: https://github.com/kleinesfilmroellchen Reviewed-by: https://github.com/supercomputer7 ✅
1 changed files with 3 additions and 1 deletions
|
@ -30,9 +30,11 @@ public:
|
|||
|
||||
virtual ~AC97() override;
|
||||
|
||||
// ^PCI::Device
|
||||
virtual StringView device_name() const override { return "AC97"sv; }
|
||||
|
||||
// ^IRQHandler
|
||||
virtual StringView purpose() const override { return "AC97"sv; }
|
||||
virtual StringView device_name() const override { return purpose(); }
|
||||
|
||||
private:
|
||||
enum NativeAudioMixerRegister : u8 {
|
||||
|
|
Loading…
Reference in a new issue