mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2025-08-04 15:30:24 +00:00
14 lines
340 B
C
14 lines
340 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2019 MediaTek Inc. */
|
|
|
|
#ifndef __ADAPTOR_HW_H__
|
|
#define __ADAPTOR_HW_H__
|
|
|
|
int adaptor_hw_power_on(struct adaptor_ctx *ctx);
|
|
int adaptor_hw_power_off(struct adaptor_ctx *ctx);
|
|
int adaptor_hw_init(struct adaptor_ctx *ctx);
|
|
int adaptor_hw_sensor_reset(struct adaptor_ctx *ctx);
|
|
|
|
|
|
#endif
|