
Move all relative header files to include folder. Change-Id: Ic61a61a88823b4749dbe8c1f680d08201a3b4a48 Signed-off-by: Meng Wang <mengw@codeaurora.org>
46 lines
1012 B
C
46 lines
1012 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __MFD_CDC_PINCTRL_H_
|
|
#define __MFD_CDC_PINCTRL_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/of.h>
|
|
|
|
#if IS_ENABLED(CONFIG_MSM_CDC_PINCTRL)
|
|
extern int msm_cdc_pinctrl_select_sleep_state(struct device_node *np);
|
|
extern int msm_cdc_pinctrl_select_active_state(struct device_node *np);
|
|
extern bool msm_cdc_pinctrl_get_state(struct device_node *np);
|
|
extern int msm_cdc_get_gpio_state(struct device_node *np);
|
|
int msm_cdc_pinctrl_drv_init(void);
|
|
void msm_cdc_pinctrl_drv_exit(void);
|
|
|
|
#else
|
|
int msm_cdc_pinctrl_select_sleep_state(struct device_node *np)
|
|
{
|
|
return 0;
|
|
}
|
|
int msm_cdc_pinctrl_select_active_state(struct device_node *np)
|
|
{
|
|
return 0;
|
|
}
|
|
int msm_cdc_get_gpio_state(struct device_node *np)
|
|
{
|
|
return 0;
|
|
}
|
|
int msm_cdc_pinctrl_drv_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
void msm_cdc_pinctrl_drv_exit(void)
|
|
{
|
|
}
|
|
bool msm_cdc_pinctrl_get_state(struct device_node *np)
|
|
{
|
|
return true;
|
|
}
|
|
#endif
|
|
|
|
#endif
|