18 lines
480 B
C
Executable File
18 lines
480 B
C
Executable File
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2021, The Linux Foundation. All rights reserved.
|
|
* Copyright (c) 2023, Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __QCOM_GDSC_DEBUG_H__
|
|
#define __QCOM_GDSC_DEBUG_H__
|
|
|
|
#if IS_ENABLED(CONFIG_QCOM_GDSC_REGULATOR)
|
|
void gdsc_debug_print_regs(struct regulator *regulator);
|
|
#else
|
|
static inline void gdsc_debug_print_regs(struct regulator *regulator)
|
|
{ }
|
|
#endif
|
|
|
|
#endif /* __QCOM_GDSC_DEBUG_H__ */
|