1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:47:35 +00:00

Kernel: Remove declarations for non-existent methods

This commit is contained in:
Sam Atkins 2023-01-27 17:06:02 +00:00 committed by Linus Groh
parent 09a22ddb2a
commit 3cbc0fdbb0
19 changed files with 0 additions and 42 deletions

View file

@ -23,7 +23,6 @@ public:
private:
ISAIDEController();
LockRefPtr<StorageDevice> device_by_channel_and_position(u32 index) const;
ErrorOr<void> initialize_channels();
};
}

View file

@ -67,7 +67,6 @@ private:
u8 read_redirection_entry_vector(u8 index) const;
Optional<int> find_redirection_entry_by_vector(u8 vector) const;
void configure_redirections() const;
void write_register(u32 index, u32 value) const;
u32 read_register(u32 index) const;

View file

@ -31,7 +31,6 @@ private:
bool is_pci_native_mode_enabled_on_secondary_channel() const;
explicit PCIIDELegacyModeController(PCI::DeviceIdentifier const&);
LockRefPtr<StorageDevice> device_by_channel_and_position(u32 index) const;
ErrorOr<void> initialize_and_enumerate_channels(bool force_pio);
// FIXME: Find a better way to get the ProgrammingInterface

View file

@ -59,8 +59,6 @@ private:
bool is_64bit_capable(u8 comparator_number) const;
void set_comparators_to_optimal_interrupt_state(size_t timers_count);
u64 nanoseconds_to_raw_ticks() const;
PhysicalAddress find_acpi_hpet_registers_block();
explicit HPET(PhysicalAddress acpi_hpet);
PhysicalAddress m_physical_acpi_hpet_table;