mirror of
https://github.com/LineageOS/android_kernel_fxtec_sm6115.git
synced 2026-04-03 05:18:37 +00:00
Update config macro used in devbw include file, use the proper config macro enabled in the config file. Change-Id: I187942f849c4a2dde877778053ede14b0c9d31fd Signed-off-by: Santosh Mardi <gsantosh@codeaurora.org>
36 lines
756 B
C
36 lines
756 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2014, 2019, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _DEVFREQ_DEVBW_H
|
|
#define _DEVFREQ_DEVBW_H
|
|
|
|
#include <linux/devfreq.h>
|
|
|
|
#ifdef CONFIG_QCOM_DEVFREQ_DEVBW
|
|
int devfreq_add_devbw(struct device *dev);
|
|
int devfreq_remove_devbw(struct device *dev);
|
|
int devfreq_suspend_devbw(struct device *dev);
|
|
int devfreq_resume_devbw(struct device *dev);
|
|
#else
|
|
static inline int devfreq_add_devbw(struct device *dev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int devfreq_remove_devbw(struct device *dev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int devfreq_suspend_devbw(struct device *dev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int devfreq_resume_devbw(struct device *dev)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#endif /* _DEVFREQ_DEVBW_H */
|