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 D10B2CDB465 for ; Mon, 16 Oct 2023 14:38:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232178AbjJPOig (ORCPT ); Mon, 16 Oct 2023 10:38:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49144 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232003AbjJPOie (ORCPT ); Mon, 16 Oct 2023 10:38:34 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 61CD4AB for ; Mon, 16 Oct 2023 07:38:33 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0C304C433C7; Mon, 16 Oct 2023 14:38:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1697467113; bh=VJyGFGnCxOE3R7mSYDW1dreNDxE6icdciGwJArzqru0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=TPwwozyKXU3+Hek7w+hL/wMHLC69oGdgnT4RaZAYHySek3BfOL6T1u+gJEF7tNx+i ldxu+vUTLv72vfzBARGCndFnTe/z8OPQSiTB7FEk9OjHWs5CBF3wJ6V0SV7i+18XG7 0YrIuIKzdxqn5VVh/pvqoXZAPnixnnt1n1Sf4O3P7blNIlp3t2MThfrlnb5tCl6Qip pS3LYF4QkmcGSQHEL53+wUn18u1ve+YHdzzgvld25evxc9uWeousWnGtwQetjObGb1 RRcBVuRtJAFD2MCPWisjkAZNyMN413zoTz8xF0/D/HfPBX+WHlZ50GP63Q/UoirGT5 g5nuRDztZf8tQ== Received: from johan by xi.lan with local (Exim 4.96) (envelope-from ) id 1qsOjk-0005WX-0k; Mon, 16 Oct 2023 16:38:28 +0200 Date: Mon, 16 Oct 2023 16:38:28 +0200 From: Johan Hovold To: Randy Dunlap Cc: linux-kernel@vger.kernel.org, Greg Kroah-Hartman Subject: Re: [PATCH] gnss: tell what GNSS means Message-ID: References: <20230925054346.18065-1-rdunlap@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230925054346.18065-1-rdunlap@infradead.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Sep 24, 2023 at 10:43:46PM -0700, Randy Dunlap wrote: > Tell users what GNSS means in the Kconfig prompt. > menuconfig GNSS > - tristate "GNSS receiver support" > + tristate "GNSS (Global Navigation Satellite System) receiver support" No, I don't like the way this clutters menuconfig. The above would make this one of the longest entries and for very little gain. We don't spell out NVMe or SPI either and I think the help text below is clear enough as anyone not yet familiar with the concept of "GNSS receivers" is sure to at least have heard of "GPS receivers" (which we also don't spell out). > help > Say Y here if you have a GNSS receiver (e.g. a GPS receiver). Johan