|
@@ -19,6 +19,7 @@
|
|
|
|
|
|
#include <linux/bitops.h>
|
|
|
#include <linux/errno.h>
|
|
|
+#include <mach/msm_gpiomux.h>
|
|
|
|
|
|
#if defined(CONFIG_MSM_V2_TLMM)
|
|
|
#include "gpiomux-v2.h"
|
|
@@ -71,12 +72,6 @@ enum {
|
|
|
*/
|
|
|
extern struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS];
|
|
|
|
|
|
-/* Increment a gpio's reference count, possibly activating the line. */
|
|
|
-int __must_check msm_gpiomux_get(unsigned gpio);
|
|
|
-
|
|
|
-/* Decrement a gpio's reference count, possibly suspending the line. */
|
|
|
-int msm_gpiomux_put(unsigned gpio);
|
|
|
-
|
|
|
/* Install a new configuration to the gpio line. To avoid overwriting
|
|
|
* a configuration, leave the VALID bit out.
|
|
|
*/
|
|
@@ -94,16 +89,6 @@ int msm_gpiomux_write(unsigned gpio,
|
|
|
*/
|
|
|
void __msm_gpiomux_write(unsigned gpio, gpiomux_config_t val);
|
|
|
#else
|
|
|
-static inline int __must_check msm_gpiomux_get(unsigned gpio)
|
|
|
-{
|
|
|
- return -ENOSYS;
|
|
|
-}
|
|
|
-
|
|
|
-static inline int msm_gpiomux_put(unsigned gpio)
|
|
|
-{
|
|
|
- return -ENOSYS;
|
|
|
-}
|
|
|
-
|
|
|
static inline int msm_gpiomux_write(unsigned gpio,
|
|
|
gpiomux_config_t active,
|
|
|
gpiomux_config_t suspended)
|