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 3A29DC6FA83 for ; Mon, 5 Sep 2022 11:07:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238048AbiIELHw (ORCPT ); Mon, 5 Sep 2022 07:07:52 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35906 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236361AbiIELHu (ORCPT ); Mon, 5 Sep 2022 07:07:50 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D3F1127B09; Mon, 5 Sep 2022 04:07:49 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 80C25B810DD; Mon, 5 Sep 2022 11:07:48 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C8355C433D7; Mon, 5 Sep 2022 11:07:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1662376067; bh=NCHiJUzFQ5Oq/AO3AnwAzpKld4u1DrxzVVAgLT3exyI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=hGc1Qye10ygILeTS6wCE1BPBoiVpgzRcbochFyHKjVt8G71OkJie1ba882ck2Ehww dz+8qDvxh+Z7ZK1ApiKeCodqaVi+GS56hQW3JBAPeKwP7sGaWiPWaSkYzhgZ4qkDzt smsGPLKrLnTDMT/8WT0Q3IoqWiHLeCODYBQcDKqo= Date: Mon, 5 Sep 2022 13:07:44 +0200 From: Greg Kroah-Hartman To: Ard Biesheuvel Cc: linux-usb@vger.kernel.org, Alan Stern , Nicolas Ferre , Alexandre Belloni , Claudiu Beznea , Krzysztof Kozlowski , Alim Akhtar , Avi Fishman , Tomer Maimon , Tali Perry , Patrick Venture , Nancy Yuen , Benjamin Fair , Patrice Chotard , Vladimir Zapolskiy , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-samsung-soc@vger.kernel.org, linux-omap@vger.kernel.org, Rob Herring Subject: Re: [PATCH v2] usb: reduce kernel log spam on driver registration Message-ID: References: <20220905105252.351795-1-ardb@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220905105252.351795-1-ardb@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 05, 2022 at 12:52:52PM +0200, Ard Biesheuvel wrote: > Drivers are typically supposed to be quiet unless they are actually > probed, but for some reason, USB host controllers seem to be exempt from > this rule, and happily broadcast their existence into the kernel log at > boot even if the hardware in question is nowhere to be found. > > Let's fix that, and remove these pr_info() calls. > > Cc: Alan Stern > Cc: Greg Kroah-Hartman > Cc: Nicolas Ferre > Cc: Alexandre Belloni > Cc: Claudiu Beznea > Cc: Krzysztof Kozlowski > Cc: Alim Akhtar > Cc: Avi Fishman > Cc: Tomer Maimon > Cc: Tali Perry > Cc: Patrick Venture > Cc: Nancy Yuen > Cc: Benjamin Fair > Cc: Patrice Chotard > Cc: Vladimir Zapolskiy > Cc: linux-usb@vger.kernel.org > Cc: linux-arm-kernel@lists.infradead.org > Cc: linux-kernel@vger.kernel.org > Cc: linux-samsung-soc@vger.kernel.org > Cc: linux-omap@vger.kernel.org > Signed-off-by: Ard Biesheuvel > Reviewed-by: Krzysztof Kozlowski > Acked-by: Alan Stern > Reviewed-by: Rob Herring > Reviewed-by: Alim Akhtar > --- > v2: - drop another couple of occurrences pointed out by Robert > - drop hcd_name variables as well if the only reference to them is > being dropped > - pick up acks I've already applied your first version, so can you rebase this against linux-next and send just the fixups? thanks, greg k-h