1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:47:34 +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:
Liav A 2020-02-22 23:56:00 +02:00 committed by Andreas Kling
parent d51c81f475
commit a7d7c0e60c
4 changed files with 18 additions and 18 deletions

View file

@ -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);