mirror of
https://github.com/justinian/jsix.git
synced 2025-12-11 00:44:31 -08:00
This was kept in the kernel as a way to keep exercising the code, but it doesn't belong there. This moves it to init, which doesn't do anything but probe for devices currently - but at least it's executing the code in userspace now.
13 lines
236 B
C++
13 lines
236 B
C++
#pragma once
|
|
/// \file acpi.h
|
|
/// Routines for loading and parsing ACPI tables
|
|
|
|
#include <util/counted.h>
|
|
#include <j6/types.h>
|
|
|
|
namespace bootproto {
|
|
struct module;
|
|
}
|
|
|
|
void load_acpi(j6_handle_t sys, const bootproto::module *mod);
|