brintos

brintos / linux-shallow public Read only

0
0
Text · 1.2 KiB · 703db4d Raw
46 lines · c
1/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */2/******************************************************************************3 *4 * Module Name: aczephyr.h - OS specific defines, etc.5 *6 * Copyright (C) 2000 - 2023, Intel Corp.7 *8 *****************************************************************************/9 10#ifndef __ACZEPHYR_H__11#define __ACZEPHYR_H__12 13#define ACPI_MACHINE_WIDTH      6414 15#define ACPI_NO_ERROR_MESSAGES16#undef ACPI_DEBUG_OUTPUT17#define ACPI_USE_SYSTEM_CLIBRARY18#undef ACPI_DBG_TRACK_ALLOCATIONS19#define ACPI_SINGLE_THREADED20#define ACPI_USE_NATIVE_RSDP_POINTER21 22#include <zephyr/kernel.h>23#include <zephyr/device.h>24#include <stdio.h>25#include <stdlib.h>26#include <string.h>27#include <ctype.h>28#include <zephyr/fs/fs.h>29#include <zephyr/sys/printk.h>30#include <zephyr/sys/__assert.h>31 32/******************************************************************************33 *34 * FUNCTION:    acpi_enable_dbg_print35 *36 * PARAMETERS:  Enable, 	            - Enable/Disable debug print37 *38 * RETURN:      None39 *40 * DESCRIPTION: Enable/disable debug print41 *42 *****************************************************************************/43 44void acpi_enable_dbg_print(bool enable);45#endif46