import PULS_20160108
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / misc / mediatek / connectivity / common_detect / drv_init / bluetooth_drv_init.c
CommitLineData
6fa3eb70
S
1/*
2* Copyright (C) 2011-2014 MediaTek Inc.
3*
4* This program is free software: you can redistribute it and/or modify it under the terms of the
5* GNU General Public License version 2 as published by the Free Software Foundation.
6*
7* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
8* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9* See the GNU General Public License for more details.
10*
11* You should have received a copy of the GNU General Public License along with this program.
12* If not, see <http://www.gnu.org/licenses/>.
13*/
14
15#ifdef DFT_TAG
16#undef DFT_TAG
17#endif
18#define DFT_TAG "[BT-MOD-INIT]"
19
20#include "wmt_detect.h"
21#include "bluetooth_drv_init.h"
22
23
24int do_bluetooth_drv_init(int chip_id)
25{
26 int i_ret = -1;
27 WMT_DETECT_INFO_FUNC("start to do bluetooth driver init \n");
28 i_ret = mtk_wcn_stpbt_drv_init();
29 WMT_DETECT_INFO_FUNC("finish bluetooth driver init, i_ret:%d\n", i_ret);
30 return i_ret;
31}
32
33