mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 17:57:35 +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
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…
Add table
Add a link
Reference in a new issue