19 lines
566 B
C
Executable file
19 lines
566 B
C
Executable file
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2020 Samsung Electronics Co., Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* Device Tree binding constants for Exynos DIT
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_EXYNOS_DIT_H
|
|
#define _DT_BINDINGS_EXYNOS_DIT_H
|
|
|
|
/* capabilities */
|
|
#define DIT_CAP_MASK_NONE (0x0)
|
|
#define DIT_CAP_MASK_PORT_BIG_ENDIAN (0x1 << 0) /* deprecated */
|
|
|
|
#endif /* _DT_BINDINGS_EXYNOS_DIT_H */
|