From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from lider.pardus.org.tr ([193.140.100.216]:36767 "EHLO lider.pardus.org.tr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752001Ab0ALV3F (ORCPT ); Tue, 12 Jan 2010 16:29:05 -0500 Message-ID: <4B4CE9A0.3020902@pardus.org.tr> Date: Tue, 12 Jan 2010 23:29:04 +0200 From: =?UTF-8?B?T3phbiDDh2HEn2xheWFu?= MIME-Version: 1.0 To: Linux Wireless List , linux-bluetooth@vger.kernel.org Subject: CONFIG_BT_CMTP is not checked in compat-wireless Content-Type: text/plain; charset=UTF-8 Sender: linux-wireless-owner@vger.kernel.org List-ID: Hi, CONFIG_BT_CMTP depends on BT && BT_L2CAP && ISDN_CAPI but in config.mk there isn't an explicit check for those conditions. On a ISDN_CAPI disabled kernel this causes unresolved symbols as cmtp.ko is built Something like below fixes the problem (at least for CMTP case) by not compiling net/bluetooth/cmtp: # CONFIG_BT_CMTP depends on ISDN_CAPI ifneq ($(CONFIG_BT_CMTP),) CONFIG_BT_CMTP=m endif Regards, Ozan Caglayan