2015-04-28 12:04:37 +00:00
|
|
|
/*
|
|
|
|
* \brief Board-driver base
|
|
|
|
* \author Alexy Gallardo Segura <alexy@uclv.cu>
|
|
|
|
* \author Humberto López León <humberto@uclv.cu>
|
|
|
|
* \author Reinier Millo Sánchez <rmillo@uclv.cu>
|
|
|
|
* \date 2015-04-28
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Genode Labs GmbH
|
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU General Public License version 2.
|
|
|
|
*/
|
|
|
|
|
2015-09-03 12:55:05 +00:00
|
|
|
#ifndef _INCLUDE__SPEC__EXYNOS4__BOARD_BASE_H_
|
|
|
|
#define _INCLUDE__SPEC__EXYNOS4__BOARD_BASE_H_
|
2015-04-28 12:04:37 +00:00
|
|
|
|
|
|
|
namespace Genode { struct Exynos4; }
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Board-driver base
|
|
|
|
*/
|
|
|
|
struct Genode::Exynos4
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2015-09-03 12:55:05 +00:00
|
|
|
#endif /* _INCLUDE__SPEC__EXYNOS4__BOARD_BASE_H_ */
|