Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752573AbdHMGuJ (ORCPT ); Sun, 13 Aug 2017 02:50:09 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:55431 "EHLO mail3-relais-sop.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750921AbdHMGr2 (ORCPT ); Sun, 13 Aug 2017 02:47:28 -0400 X-IronPort-AV: E=Sophos;i="5.41,367,1498514400"; d="scan'208";a="234287644" From: Julia Lawall To: Greg Kroah-Hartman Cc: bhumirks@gmail.com, kernel-janitors@vger.kernel.org, Jiri Slaby , Carlo Caione , Kevin Hilman , linux-serial@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-amlogic@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH 01/11] serial: meson: constify uart_ops structures Date: Sun, 13 Aug 2017 08:21:40 +0200 Message-Id: <1502605310-4314-2-git-send-email-Julia.Lawall@lip6.fr> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1502605310-4314-1-git-send-email-Julia.Lawall@lip6.fr> References: <1502605310-4314-1-git-send-email-Julia.Lawall@lip6.fr> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 834 Lines: 25 These uart_ops structures are only stored in the ops field of a uart_port structure and this fields is const, so the uart_ops structures can also be const. Done with the help of Coccinelle. Signed-off-by: Julia Lawall --- drivers/tty/serial/meson_uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/tty/serial/meson_uart.c b/drivers/tty/serial/meson_uart.c index 42e4a4c..07c0f98 100644 --- a/drivers/tty/serial/meson_uart.c +++ b/drivers/tty/serial/meson_uart.c @@ -424,7 +424,7 @@ static void meson_uart_config_port(struct uart_port *port, int flags) } } -static struct uart_ops meson_uart_ops = { +static const struct uart_ops meson_uart_ops = { .set_mctrl = meson_uart_set_mctrl, .get_mctrl = meson_uart_get_mctrl, .tx_empty = meson_uart_tx_empty,