summaryrefslogtreecommitdiff
path: root/Kernel/Arch
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2023-01-27 17:06:02 +0000
committerLinus Groh <mail@linusgroh.de>2023-01-27 20:33:18 +0000
commit3cbc0fdbb0c78df399868b6827728c9bae27aa54 (patch)
treeeec7242c72087829094ae6313a4158c0b2978be1 /Kernel/Arch
parent09a22ddb2ad3da34b1ecc9b232cc2f939e67060a (diff)
downloadserenity-3cbc0fdbb0c78df399868b6827728c9bae27aa54.zip
Kernel: Remove declarations for non-existent methods
Diffstat (limited to 'Kernel/Arch')
-rw-r--r--Kernel/Arch/x86_64/ISABus/IDEController.h1
-rw-r--r--Kernel/Arch/x86_64/Interrupts/IOAPIC.h1
-rw-r--r--Kernel/Arch/x86_64/PCI/IDELegacyModeController.h1
-rw-r--r--Kernel/Arch/x86_64/Time/HPET.h2
4 files changed, 0 insertions, 5 deletions
diff --git a/Kernel/Arch/x86_64/ISABus/IDEController.h b/Kernel/Arch/x86_64/ISABus/IDEController.h
index 0fa83df194..ed4e37a6b3 100644
--- a/Kernel/Arch/x86_64/ISABus/IDEController.h
+++ b/Kernel/Arch/x86_64/ISABus/IDEController.h
@@ -23,7 +23,6 @@ public:
private:
ISAIDEController();
- LockRefPtr<StorageDevice> device_by_channel_and_position(u32 index) const;
ErrorOr<void> initialize_channels();
};
}
diff --git a/Kernel/Arch/x86_64/Interrupts/IOAPIC.h b/Kernel/Arch/x86_64/Interrupts/IOAPIC.h
index 106f16c996..fb6d9c1eae 100644
--- a/Kernel/Arch/x86_64/Interrupts/IOAPIC.h
+++ b/Kernel/Arch/x86_64/Interrupts/IOAPIC.h
@@ -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;
diff --git a/Kernel/Arch/x86_64/PCI/IDELegacyModeController.h b/Kernel/Arch/x86_64/PCI/IDELegacyModeController.h
index 218a9c4e79..367e31906c 100644
--- a/Kernel/Arch/x86_64/PCI/IDELegacyModeController.h
+++ b/Kernel/Arch/x86_64/PCI/IDELegacyModeController.h
@@ -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
diff --git a/Kernel/Arch/x86_64/Time/HPET.h b/Kernel/Arch/x86_64/Time/HPET.h
index 8454985774..cfc31426a3 100644
--- a/Kernel/Arch/x86_64/Time/HPET.h
+++ b/Kernel/Arch/x86_64/Time/HPET.h
@@ -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;