mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Kernel: Specify I/O size for BMIDEChannel
This commit is contained in:
parent
32840dfa17
commit
a0c1af4327
Notes:
sideshowbarker
2024-07-18 11:25:15 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/a0c1af43276 Pull-request: https://github.com/SerenityOS/serenity/pull/8290 Reviewed-by: https://github.com/Hendiadyoin1
2 changed files with 3 additions and 1 deletions
|
@ -82,6 +82,7 @@ public:
|
|||
template<typename T>
|
||||
ALWAYS_INLINE T in()
|
||||
{
|
||||
static_assert(sizeof(T) <= 4);
|
||||
if constexpr (sizeof(T) == 4)
|
||||
return IO::in32(get());
|
||||
if constexpr (sizeof(T) == 2)
|
||||
|
@ -94,6 +95,7 @@ public:
|
|||
template<typename T>
|
||||
ALWAYS_INLINE void out(T value)
|
||||
{
|
||||
static_assert(sizeof(T) <= 4);
|
||||
if constexpr (sizeof(T) == 4) {
|
||||
IO::out32(get(), value);
|
||||
return;
|
||||
|
|
|
@ -212,7 +212,7 @@ void BMIDEChannel::ata_read_sectors(bool slave_request, u16 capabilities)
|
|||
m_io_group.bus_master_base().value().out<u8>(0);
|
||||
|
||||
// Write the PRDT location
|
||||
m_io_group.bus_master_base().value().offset(4).out(m_prdt_page->paddr().get());
|
||||
m_io_group.bus_master_base().value().offset(4).out<u32>(m_prdt_page->paddr().get());
|
||||
|
||||
// Set transfer direction
|
||||
m_io_group.bus_master_base().value().out<u8>(0x8);
|
||||
|
|
Loading…
Reference in a new issue