gma500: cdv_intel_crt: drop dead code
[linux-2.6.git] / drivers / pinctrl / pinconf.h
blob006b77fa737e8841ff84713fe3ea24b74a82fd37
1 /*
2 * Internal interface between the core pin control system and the
3 * pin config portions
5 * Copyright (C) 2011 ST-Ericsson SA
6 * Written on behalf of Linaro for ST-Ericsson
7 * Based on bits of regulator core, gpio core and clk core
9 * Author: Linus Walleij <linus.walleij@linaro.org>
11 * License terms: GNU General Public License (GPL) version 2
14 #ifdef CONFIG_PINCONF
16 int pinconf_check_ops(struct pinctrl_dev *pctldev);
17 void pinconf_init_device_debugfs(struct dentry *devroot,
18 struct pinctrl_dev *pctldev);
19 int pin_config_get_for_pin(struct pinctrl_dev *pctldev, unsigned pin,
20 unsigned long *config);
21 int pin_config_set_for_pin(struct pinctrl_dev *pctldev, unsigned pin,
22 unsigned long config);
24 #else
26 static inline int pinconf_check_ops(struct pinctrl_dev *pctldev)
28 return 0;
31 static inline void pinconf_init_device_debugfs(struct dentry *devroot,
32 struct pinctrl_dev *pctldev)
36 #endif