From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.3 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AC12AC433ED for ; Tue, 20 Apr 2021 18:09:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 63823613C8 for ; Tue, 20 Apr 2021 18:09:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233468AbhDTSKI (ORCPT ); Tue, 20 Apr 2021 14:10:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44064 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233363AbhDTSKH (ORCPT ); Tue, 20 Apr 2021 14:10:07 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7091DC06138A; Tue, 20 Apr 2021 11:09:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:Content-Type: In-Reply-To:MIME-Version:Date:Message-ID:From:References:Cc:To:Subject:Sender :Reply-To:Content-ID:Content-Description; bh=XKyAAnXa+AAtAAiAcYGKXm97C3Mnk3mRV8T3Uf0k5SQ=; b=MqwtAKWqDwasGHWepcp/np9mz9 +q0FSAm1hURJ6otOAazoCKmGLQ0FyifDF7jEoF0zQgWjjgu5V+VwBg0rd/2l+vYhKfp6klLeAU0V1 /aFIOmbjtM7kSlESU6NQ2GWZnzWtnVvwlSsOcqoONokXbnzZN6tUfEuyAg93pI7SN+mA8YeImsQaU HtJWngop7zFFfiqkYKKus3e31CKzTsX2Vv8xMEqRe8OPp1fLvC9ni4MluHZ14POH0mjxPlAVz6BY0 w9IyeUdtSV/jw/lZ/2DL119FN58W/b1GIDkECC+7o3scp8sttqaN5DdLVrx1VhtGQUVUbVs0mldrx wZ2aA0nA==; Received: from [2601:1c0:6280:3f0::df68] by casper.infradead.org with esmtpsa (Exim 4.94 #2 (Red Hat Linux)) id 1lYunK-00FTpS-Vl; Tue, 20 Apr 2021 18:08:34 +0000 Subject: Re: [PATCH V2 16/16] net: iosm: infrastructure To: M Chetan Kumar , netdev@vger.kernel.org, linux-wireless@vger.kernel.org Cc: johannes@sipsolutions.net, krishna.c.sudi@intel.com, linuxwwan@intel.com References: <20210420161310.16189-1-m.chetan.kumar@intel.com> <20210420161310.16189-17-m.chetan.kumar@intel.com> From: Randy Dunlap Message-ID: <26d87564-cc51-021b-9644-8dd05da3159e@infradead.org> Date: Tue, 20 Apr 2021 11:08:14 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.0 MIME-Version: 1.0 In-Reply-To: <20210420161310.16189-17-m.chetan.kumar@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org Hi-- On 4/20/21 9:13 AM, M Chetan Kumar wrote: > diff --git a/drivers/net/wwan/Kconfig b/drivers/net/wwan/Kconfig > new file mode 100644 > index 000000000000..6507970653d2 > --- /dev/null > +++ b/drivers/net/wwan/Kconfig > @@ -0,0 +1,19 @@ > +# SPDX-License-Identifier: GPL-2.0-only > +# > +# Wireless WAN device configuration > +# > + > +menuconfig WWAN > + bool "Wireless WAN" > + depends on NET This already depends on NET since it is inside NETDEVICES which depends on NET. > + help > + This section contains all Wireless WAN (WWAN) device drivers. > + > + If you have one of those WWAN M.2 Modules and wish to use it in Linux > + say Y here and also to the Module specific WWAN Device Driver. > + > + If unsure, say N. > + > +if WWAN > +source "drivers/net/wwan/iosm/Kconfig" > +endif # WWAN -- ~Randy