2016-11-23 16:07:49 +00:00
|
|
|
/*
|
|
|
|
* \brief Port of ACPICA library
|
|
|
|
* \author Alexander Boettcher
|
|
|
|
* \date 2016-11-14
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2016-2017 Genode Labs GmbH
|
2016-11-23 16:07:49 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2016-11-23 16:07:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__ACPICA__ACPICA_H_
|
|
|
|
#define _INCLUDE__ACPICA__ACPICA_H_
|
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
struct Env;
|
|
|
|
struct Allocator;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Acpica { void init(Genode::Env &env, Genode::Allocator &heap); }
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__ACPICA__ACPICA_H_ */
|