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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 73F7BC433F5 for ; Thu, 26 May 2022 18:18:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234905AbiEZSSp (ORCPT ); Thu, 26 May 2022 14:18:45 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37824 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1343605AbiEZSSm (ORCPT ); Thu, 26 May 2022 14:18:42 -0400 Received: from sipsolutions.net (s3.sipsolutions.net [IPv6:2a01:4f8:191:4433::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6C618BA99F for ; Thu, 26 May 2022 11:18:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sipsolutions.net; s=mail; h=MIME-Version:Content-Transfer-Encoding: Content-Type:References:In-Reply-To:Date:Cc:To:From:Subject:Message-ID:Sender :Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From:Resent-To: Resent-Cc:Resent-Message-ID; bh=xMKA54aJAAoaj8GkcafnJ5lkBPqI078hfRBM8+lexNs=; t=1653589120; x=1654798720; b=Y8rBpQeNyW2doMUe2rl+YzzAo/A43wEAiU8QA88Wg25+iTS 3/xfMr4cp5F7XWibPYqyRvU/PMMuPlzSGtfJgt88GRoGvjDu6VmxRGB9oYoGjr4j7M8IcpEXMlcZ2 RqNb5mbZP79QAfdjQmQT2dQ2hQwTqdYixzAPhJomcgEmpbs+W2sA5L67DEJgslDgqEhK9ZfEDCVKB 1rm5gbeDa41mrnxsy4+qFYTmgwcc3RDVnJLZGgnVlrXR7y0T+TmLk5URFBjlhd+6b4Pvt6oJXF/35 N/q/ZEcnyAXaSFOzw/MO/S9wwySw3k+5VKpcXKsnXmZLRTDE4VqWzGmA7Ovf/PhQ==; Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.95) (envelope-from ) id 1nuI4C-005EXY-DD; Thu, 26 May 2022 20:18:36 +0200 Message-ID: Subject: Re: [RFC v2 03/96] cl8k: add Kconfig From: Johannes Berg To: viktor.barna@celeno.com, linux-wireless@vger.kernel.org Cc: Kalle Valo , "David S . Miller" , Jakub Kicinski , Aviad Brikman , Eliav Farber , Maksym Kokhan , Oleksandr Savchenko , Shay Bar Date: Thu, 26 May 2022 20:18:35 +0200 In-Reply-To: <20220524113502.1094459-4-viktor.barna@celeno.com> References: <20220524113502.1094459-1-viktor.barna@celeno.com> <20220524113502.1094459-4-viktor.barna@celeno.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.44.1 (3.44.1-1.fc36) MIME-Version: 1.0 X-malware-bazaar: not-scanned Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org On Tue, 2022-05-24 at 14:33 +0300, viktor.barna@celeno.com wrote: > + > +config CL8K_VERSION > + string "Version" > + depends on CL8K > + default "8.1.x" > + help > + Sets module version, which may be important for FW compatibility > + analysis and syncing upstream codebase with the internal codebase. >=20 This, along with the def.h stuff using it, and MODULE_VERSION(), is all rather pointless, I think you should remove it. johannes