diff options
author | Liav A <liavalb@gmail.com> | 2020-02-23 14:14:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-24 11:27:03 +0100 |
commit | fe664965c2e1e89654a74c620f1b9b5653f59864 (patch) | |
tree | 15cd4d5da60e663d791987b30d151f97a5789f79 /Kernel/Interrupts/SharedIRQHandler.h | |
parent | a7d7c0e60c7cfebbcbd20edf8df3f6897e125bf7 (diff) | |
download | serenity-fe664965c2e1e89654a74c620f1b9b5653f59864.zip |
Kernel: Change get_sharing_devices_count() in GenericInterruptHandler
The new method' name is sharing_devices_count().
The Serenity Coding Style tends to not accept the word "get" in
methods' names if possible.
Diffstat (limited to 'Kernel/Interrupts/SharedIRQHandler.h')
-rw-r--r-- | Kernel/Interrupts/SharedIRQHandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Interrupts/SharedIRQHandler.h b/Kernel/Interrupts/SharedIRQHandler.h index c3a3e20dc1..a33be4c4a1 100644 --- a/Kernel/Interrupts/SharedIRQHandler.h +++ b/Kernel/Interrupts/SharedIRQHandler.h @@ -45,7 +45,7 @@ public: virtual bool eoi() override; - virtual size_t get_sharing_devices_count() const override { return m_handlers.size(); } + virtual size_t sharing_devices_count() const override { return m_handlers.size(); } virtual bool is_shared_handler() const override { return true; } virtual bool is_sharing_with_others() const override { return false; } |