mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2025-09-05 12:50:27 +00:00
21 lines
361 B
C
21 lines
361 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*/
|
|
#ifndef MTK_HCP_SUPPORT_H
|
|
#define MTK_HCP_SUPPORT_H
|
|
|
|
#include <mtk-hcp.h>
|
|
|
|
int CM4_SUPPORT_CONFIGURE_TABLE[][2] = {
|
|
#ifdef CONFIG_ISP_CM4_SUPPORT
|
|
{MODULE_ISP, 1},
|
|
#endif
|
|
#ifdef CONFI_FD_CM4_SUPPORT
|
|
{MODULE_FD, 1},
|
|
#endif
|
|
{MODULE_MAX_ID, 0}
|
|
};
|
|
|
|
#endif /* _MTK_HCP_SUPPORT_H */
|