mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:57:43 +00:00
Kernel: Make map_bios() and map_ebda() fallible using ErrorOr
This commit is contained in:
parent
ae5f5a4d50
commit
e2e5d4da16
4 changed files with 48 additions and 21 deletions
|
@ -57,8 +57,8 @@ struct [[gnu::packed]] EntryPoint64bit {
|
|||
|
||||
namespace Kernel {
|
||||
|
||||
Memory::MappedROM map_bios();
|
||||
Memory::MappedROM map_ebda();
|
||||
ErrorOr<Memory::MappedROM> map_bios();
|
||||
ErrorOr<Memory::MappedROM> map_ebda();
|
||||
|
||||
class BIOSSysFSComponent : public SysFSComponent {
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue