1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| /*
| * Copyright (C) 2016 Freescale Semiconductor, Inc.
| *
| * SPDX-License-Identifier: GPL-2.0+
| */
|
| #ifndef __IMX_RDC_H__
| #define __IMX_RDC_H__
|
| #if defined(CONFIG_MX6SX)
| #include "mx6sx_rdc.h"
| #else
| #error "Please select cpu"
| #endif /* CONFIG_MX6SX */
|
| #endif /* __IMX_RDC_H__*/
|
|