1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:07:36 +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

@ -29,9 +29,6 @@ public:
SpaceType space_type() const { return m_space_type; }
template<typename V>
void write();
#if ARCH(X86_64)
static ErrorOr<NonnullOwnPtr<IOWindow>> create_for_io_space(IOAddress, u64 space_length);
#endif
@ -41,8 +38,6 @@ public:
ErrorOr<NonnullOwnPtr<IOWindow>> create_from_io_window_with_offset(u64 offset, u64 space_length);
ErrorOr<NonnullOwnPtr<IOWindow>> create_from_io_window_with_offset(u64 offset);
bool is_access_valid(u64 offset, size_t byte_size_access) const;
u8 read8(u64 offset);
u16 read16(u64 offset);
u32 read32(u64 offset);