blob: 31fc23d8c4ded9d53477c62e348701346a23374c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Author: Mikhail Kshevetskiy <mikhail.kshevetskiy@iopsys.eu>
*/
#ifndef __AIROHA_SCU_REGMAP__
#define __AIROHA_SCU_REGMAP__
#include <regmap.h>
struct regmap *airoha_get_scu_regmap(void);
struct regmap *airoha_get_chip_scu_regmap(void);
#endif
|