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:
Brian Gianforcaro 2021-10-03 04:20:58 -07:00 committed by Andreas Kling
parent 40a58f1fd4
commit 9d17070047

View file

@ -26,7 +26,7 @@ public:
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;