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 462CCC4332F for ; Wed, 19 Oct 2022 16:02:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231631AbiJSQCZ (ORCPT ); Wed, 19 Oct 2022 12:02:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51260 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231691AbiJSQBm (ORCPT ); Wed, 19 Oct 2022 12:01:42 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 24F23167F64; Wed, 19 Oct 2022 09:01:05 -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 ABCF4B824FE; Wed, 19 Oct 2022 16:01:04 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D708BC433D6; Wed, 19 Oct 2022 16:01:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1666195263; bh=cu/Lcf2pkQq7u74pOUqoljiL8FESOBlfRCoiZLlk5Ew=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ihe6HF8k37PI4OWB87wnpn+uxnyuwYf1AbS4XWQvGEaNZzon70KCfMnr3t2JdFD4P /Z0L3DPQ+hg13gEV4EHkoybI41vc5sJTdO9zCLiiGRex/q6s0I3FD9LLwkykSeVOQo 8YmK3mOuhiA2exyK4xmX0YmmL9Dqw4TbrbnuLCEo= Date: Wed, 19 Oct 2022 18:01:00 +0200 From: Greg Kroah-Hartman To: John Ogness Cc: Petr Mladek , Sergey Senozhatsky , Steven Rostedt , Thomas Gleixner , linux-kernel@vger.kernel.org, Jiri Slaby , linux-serial@vger.kernel.org Subject: Re: [PATCH printk v2 13/38] tty: serial: pic32_uart: use console_is_enabled() Message-ID: References: <20221019145600.1282823-1-john.ogness@linutronix.de> <20221019145600.1282823-14-john.ogness@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221019145600.1282823-14-john.ogness@linutronix.de> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Oct 19, 2022 at 05:01:35PM +0206, John Ogness wrote: > Replace (console->flags & CON_ENABLED) usage with console_is_enabled(). > > Signed-off-by: John Ogness Reviewed-by: Greg Kroah-Hartman