mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Kernel: Fix copy paste in VirtIO::RNG::class_name()
Ben noticed this copy paste error during code review. Co-authored-by: Ben Wiederhake <BenWiederhake.GitHub@gmx.de>
This commit is contained in:
parent
40a58f1fd4
commit
9d17070047
Notes:
sideshowbarker
2024-07-18 03:09:20 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/9d170700478 Pull-request: https://github.com/SerenityOS/serenity/pull/10325 Reviewed-by: https://github.com/BenWiederhake
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ public:
|
||||||
virtual void initialize() override;
|
virtual void initialize() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
virtual StringView class_name() const override { return "VirtIOConsole"sv; }
|
virtual StringView class_name() const override { return "VirtIORNG"sv; }
|
||||||
explicit RNG(PCI::DeviceIdentifier const&);
|
explicit RNG(PCI::DeviceIdentifier const&);
|
||||||
virtual bool handle_device_config_change() override;
|
virtual bool handle_device_config_change() override;
|
||||||
virtual void handle_queue_update(u16 queue_index) override;
|
virtual void handle_queue_update(u16 queue_index) override;
|
||||||
|
|
Loading…
Reference in a new issue