mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 17:48:37 +00:00
Kernel: Change get_pci_address() to pci_address() in PCI::Device class
The Serenity Coding Style tends to not accept the word "get" in methods' names if possible.
This commit is contained in:
parent
d51c81f475
commit
a7d7c0e60c
Notes:
sideshowbarker
2024-07-19 09:05:40 +09:00
Author: https://github.com/supercomputer7
Commit: a7d7c0e60c
Pull-request: https://github.com/SerenityOS/serenity/pull/1274
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/shannonbooth
4 changed files with 18 additions and 18 deletions
|
@ -33,7 +33,7 @@
|
|||
namespace Kernel {
|
||||
class PCI::Device : public IRQHandler {
|
||||
public:
|
||||
Address get_pci_address() const { return m_pci_address; };
|
||||
Address pci_address() const { return m_pci_address; };
|
||||
|
||||
protected:
|
||||
Device(Address pci_address);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue