Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932632AbdIRQb6 (ORCPT ); Mon, 18 Sep 2017 12:31:58 -0400 Received: from mail-pg0-f67.google.com ([74.125.83.67]:33464 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932082AbdIRQb5 (ORCPT ); Mon, 18 Sep 2017 12:31:57 -0400 X-Google-Smtp-Source: ADKCNb5W7fNpj4rvUBgoA56KYKNZkBkhZ0qt/27GA7QDSsO5uiYZlxotFNIxif2WPZZlp4wX0LV+DQ== From: Bhumika Goyal To: julia.lawall@lip6.fr, sudipm.mukherjee@gmail.com, linux-kernel@vger.kernel.org Cc: Bhumika Goyal Subject: [PATCH] parport: make parport_ip32_ops const and __initconst Date: Mon, 18 Sep 2017 22:01:47 +0530 Message-Id: <1505752307-12058-1-git-send-email-bhumirks@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 900 Lines: 24 Make this const as it is only used during a copy operation. This usage is inside init function and the structure is not referenced after initialisation, so make it __initconst too. Signed-off-by: Bhumika Goyal --- drivers/parport/parport_ip32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/parport/parport_ip32.c b/drivers/parport/parport_ip32.c index 0186db7..6287307 100644 --- a/drivers/parport/parport_ip32.c +++ b/drivers/parport/parport_ip32.c @@ -1769,7 +1769,7 @@ static size_t parport_ip32_ecp_write_data(struct parport *p, /*--- Default parport operations ---------------------------------------*/ -static __initdata struct parport_operations parport_ip32_ops = { +static const struct parport_operations parport_ip32_ops __initconst = { .write_data = parport_ip32_write_data, .read_data = parport_ip32_read_data, -- 1.9.1