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 31C78C4332F for ; Wed, 19 Oct 2022 09:35:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233739AbiJSJfM (ORCPT ); Wed, 19 Oct 2022 05:35:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38570 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233883AbiJSJdQ (ORCPT ); Wed, 19 Oct 2022 05:33:16 -0400 Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D75471A801; Wed, 19 Oct 2022 02:14:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1666170888; x=1697706888; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=2b7lkKHY7NTq5kAOsL3D2ERH+kfAyQTXERCUZSQsanQ=; b=NDiAhpzvePme4KMFEP5y2PXZMt54m7joTrpcIBugStf1rrCNGm1BvVxV EmzEAXp4PF/xeRJGbOWfdMR9+SSNLVQ9ixmm91zhWgpz45JoL+H85n7JV 1wlrfB/bnUvWqAoV9qwC4ETKEnKnbZ6Y1bZNmgA4IZN8Rik0H96p8fcDb wgMketoBbG2AU3MHiGqqkYcWKSG2MQv1No6wuKYzpG8S991UZbZmWUuQe VR8C+waYgCMYOHsw1GgxFp3kkYlFIdAytGACH2kbZ6xEGtuq/FkwpvGIN 4KQUNRALlMIuNULhVqRJLcI6awbyh7rsWArJC2oal9KyHU7tGqcXcH44q w==; X-IronPort-AV: E=McAfee;i="6500,9779,10504"; a="332911154" X-IronPort-AV: E=Sophos;i="5.95,195,1661842800"; d="scan'208";a="332911154" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Oct 2022 02:13:45 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10504"; a="734118989" X-IronPort-AV: E=Sophos;i="5.95,195,1661842800"; d="scan'208";a="734118989" Received: from sponnura-mobl1.amr.corp.intel.com (HELO ijarvine-MOBL2.ger.corp.intel.com) ([10.251.214.35]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Oct 2022 02:13:42 -0700 From: =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= To: linux-serial@vger.kernel.org, Greg KH , Jiri Slaby , linux-kernel@vger.kernel.org Cc: Andy Shevchenko , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= Subject: [PATCH 25/44] serial: pic32: Use uart_xmit_advance() Date: Wed, 19 Oct 2022 12:11:32 +0300 Message-Id: <20221019091151.6692-26-ilpo.jarvinen@linux.intel.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20221019091151.6692-1-ilpo.jarvinen@linux.intel.com> References: <20221019091151.6692-1-ilpo.jarvinen@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-serial@vger.kernel.org Take advantage of the new uart_xmit_advance() helper. Signed-off-by: Ilpo Järvinen --- drivers/tty/serial/pic32_uart.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/tty/serial/pic32_uart.c b/drivers/tty/serial/pic32_uart.c index 2beada66c824..52d026865a32 100644 --- a/drivers/tty/serial/pic32_uart.c +++ b/drivers/tty/serial/pic32_uart.c @@ -376,8 +376,7 @@ static void pic32_uart_do_tx(struct uart_port *port) pic32_uart_writel(sport, PIC32_UART_TX, c); - xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); - port->icount.tx++; + uart_xmit_advance(port, 1); if (uart_circ_empty(xmit)) break; if (--max_count == 0) -- 2.30.2