20 lines
259 B
C
20 lines
259 B
C
|
/*
|
||
|
* Copyright (c) 2019 Carlo Caione <ccaione@baylibre.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef _SOC_H_
|
||
|
#define _SOC_H_
|
||
|
|
||
|
#include <sys/util.h>
|
||
|
|
||
|
#ifndef _ASMLANGUAGE
|
||
|
|
||
|
#include <device.h>
|
||
|
|
||
|
#endif /* !_ASMLANGUAGE */
|
||
|
|
||
|
#endif /* _SOC_H_ */
|