Skip to content

Commit

Permalink
Kernel: Fix copy paste in VirtIO::RNG::class_name()
Browse files Browse the repository at this point in the history
Ben noticed this copy paste error during code review.

Co-authored-by: Ben Wiederhake <[email protected]>
  • Loading branch information
2 people authored and awesomekling committed Oct 3, 2021
1 parent 40a58f1 commit 9d17070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Kernel/Bus/VirtIO/RNG.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class RNG final
virtual void initialize() override;

private:
virtual StringView class_name() const override { return "VirtIOConsole"sv; }
virtual StringView class_name() const override { return "VirtIORNG"sv; }
explicit RNG(PCI::DeviceIdentifier const&);
virtual bool handle_device_config_change() override;
virtual void handle_queue_update(u16 queue_index) override;
Expand Down

0 comments on commit 9d17070

Please sign in to comment.