
This change removes vbatt feature code as adc tm api's functionalities has been changed and no longer supports vbatt feature. Change-Id: I431c1dfe1a5529809fd7d68d1cb15632de3b801b Signed-off-by: Sandeep Singh <quic_sandsing@quicinc.com>
19 lines
560 B
C
19 lines
560 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2017-2021, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __ICNSS_POWER_H__
|
|
#define __ICNSS_POWER_H__
|
|
|
|
int icnss_hw_power_on(struct icnss_priv *priv);
|
|
int icnss_hw_power_off(struct icnss_priv *priv);
|
|
int icnss_get_clk(struct icnss_priv *priv);
|
|
int icnss_get_vreg(struct icnss_priv *priv);
|
|
void icnss_put_resources(struct icnss_priv *priv);
|
|
void icnss_put_vreg(struct icnss_priv *priv);
|
|
void icnss_put_clk(struct icnss_priv *priv);
|
|
int icnss_vreg_unvote(struct icnss_priv *priv);
|
|
|
|
#endif
|