blob: dede706baa95a39e13c3cb1882f44d7fc8a60f5e [file] [log] [blame]
Rohit Vaswani833772c2013-03-20 19:14:06 -07001/* Copyright (c) 2013, The Linux Foundation. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13
14#include <linux/gpio.h>
15#include <linux/init.h>
16#include <linux/ioport.h>
17#include <mach/board.h>
18#include <mach/gpiomux.h>
19
20void __init fsm9900_init_gpiomux(void)
21{
22 int rc;
23
24 rc = msm_gpiomux_init_dt();
25 if (rc) {
26 pr_err("%s failed %d\n", __func__, rc);
27 return;
28 }
29}