mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-25 18:58:56 +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: 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;
|
virtual ~AC97() override;
|
||||||
|
|
||||||
|
// ^PCI::Device
|
||||||
|
virtual StringView device_name() const override { return "AC97"sv; }
|
||||||
|
|
||||||
// ^IRQHandler
|
// ^IRQHandler
|
||||||
virtual StringView purpose() const override { return "AC97"sv; }
|
virtual StringView purpose() const override { return "AC97"sv; }
|
||||||
virtual StringView device_name() const override { return purpose(); }
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum NativeAudioMixerRegister : u8 {
|
enum NativeAudioMixerRegister : u8 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue