17 lines
270 B
C
17 lines
270 B
C
//
|
|
// Created by rick on 26-03-21.
|
|
//
|
|
|
|
#ifndef NEW_KERNEL_ACPI_H
|
|
#define NEW_KERNEL_ACPI_H
|
|
|
|
// override acpi.h from ACPICA
|
|
|
|
// include custom version of acenv.h
|
|
#include <platform/acenv.h>
|
|
|
|
// continue with base acpi.h
|
|
#include_next <acpi.h>
|
|
|
|
#endif //NEW_KERNEL_ACPI_H
|