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 8B778CA0FE2 for ; Tue, 5 Sep 2023 17:08:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348009AbjIEREN (ORCPT ); Tue, 5 Sep 2023 13:04:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51268 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1353999AbjIEJHv (ORCPT ); Tue, 5 Sep 2023 05:07:51 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B3AB1D8 for ; Tue, 5 Sep 2023 02:07:46 -0700 (PDT) From: John Ogness DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1693904864; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=PWRrjrUEtylXDv3pxSFOM6Z4Sh/7jFmkYLcNS+9RmWQ=; b=HBCdebEzsdhO44DbT5rW2MCHknV88PeoEPmrI6dkJyFY3rKCJWnpN/8cZjdF6PUPJjzr/O F5MQ/BJ8gYsfFtvq/xUyFjhjSv5o3qFjhpFD/7XCtIM00LHeFUN7leX6UlFwaVJk0QIEFy 4Mb6eXDbQUeaLqF6A4A+jd4yOLFPp5Kprx3NUEnLoCW3Ienv5A0p6GI9e5Y0PSYxdKb3DM rheJ4Jk6u1aqA+wgx5guN2TZ/yvZAbY/mvDRfKSNgOg0yt0kmcUR7ldGkpxayEmkjJthR+ r/suoIVnXvGjKbXqwXTOhRZmoDMDaWWlWUgjoxdbECiHAhQMHv87kl1hvMQhTQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1693904864; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=PWRrjrUEtylXDv3pxSFOM6Z4Sh/7jFmkYLcNS+9RmWQ=; b=fQLpM0DNFpkO5jlfm6tKoVoGoTWW6pFYUdSuTxry2OkrY6TJlOsGaqR+iLnVKsfDZgF9U4 bZBMjibhoqETGfCg== To: kernel test robot , Petr Mladek Cc: oe-kbuild-all@lists.linux.dev, Sergey Senozhatsky , Steven Rostedt , Thomas Gleixner , linux-kernel@vger.kernel.org, Greg Kroah-Hartman Subject: Re: [PATCH printk v3 2/7] printk: nbcon: Add acquire/release logic In-Reply-To: <202309040038.Cn1kd5bN-lkp@intel.com> References: <20230903150539.245076-3-john.ogness@linutronix.de> <202309040038.Cn1kd5bN-lkp@intel.com> Date: Tue, 05 Sep 2023 11:13:43 +0206 Message-ID: <871qfdxa1s.fsf@jogness.linutronix.de> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023-09-04, kernel test robot wrote: >>> kernel/printk/nbcon.c:392: warning: expecting prototype for nbcon_context_try_acquire_hostile(). Prototype was for nbcon_context_acquire_hostile() instead Thanks kernel test robot. The kerneldoc will be fixed for v4. The function was renamed for v3 because it now always succeeds. There is no need for "try" in the name. John Ogness