Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754390AbdFWE5D (ORCPT ); Fri, 23 Jun 2017 00:57:03 -0400 Received: from mail-pf0-f193.google.com ([209.85.192.193]:36258 "EHLO mail-pf0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751230AbdFWE5B (ORCPT ); Fri, 23 Jun 2017 00:57:01 -0400 From: Arvind Yadav To: arnd@arndb.de, gregkh@linuxfoundation.org, amit@kernel.org Cc: virtualization@lists.linux-foundation.org, linux-kernel@vger.kernel.org Subject: [PATCH] char: virtio_console: constify port_attribute_group Date: Fri, 23 Jun 2017 10:26:18 +0530 Message-Id: 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: 908 Lines: 28 File size before: text data bss dec hex filename 13775 656 88 14519 38b7 drivers/char/virtio_console.o File size After adding 'const': text data bss dec hex filename 13839 592 88 14519 38b7 drivers/char/virtio_console.o Signed-off-by: Arvind Yadav --- drivers/char/virtio_console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c index ad843eb..06bd635 100644 --- a/drivers/char/virtio_console.c +++ b/drivers/char/virtio_console.c @@ -1308,7 +1308,7 @@ static ssize_t show_port_name(struct device *dev, NULL }; -static struct attribute_group port_attribute_group = { +static const struct attribute_group port_attribute_group = { .name = NULL, /* put in device directory */ .attrs = port_sysfs_entries, }; -- 1.9.1