Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261447AbUKCIEf (ORCPT ); Wed, 3 Nov 2004 03:04:35 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261460AbUKCIEd (ORCPT ); Wed, 3 Nov 2004 03:04:33 -0500 Received: from mail6.speakeasy.net ([216.254.0.206]:20933 "EHLO mail6.speakeasy.net") by vger.kernel.org with ESMTP id S261447AbUKCIEa (ORCPT ); Wed, 3 Nov 2004 03:04:30 -0500 Date: Wed, 3 Nov 2004 00:04:27 -0800 (PST) From: vlobanov To: linux-kernel@vger.kernel.org Subject: [TRIVIAL PATCH] /init/version.c Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1118 Lines: 30 Hi, This is a trivial patch to save a word-length worth of space. Just something that seemed easy to do while I was reading over the source code. Diffed against 2.6.9: ================================================= --- version.c.orig 2004-11-02 23:54:03.000000000 -0800 +++ version.c 2004-11-02 23:54:36.000000000 -0800 @@ -28,6 +28,6 @@ EXPORT_SYMBOL(system_utsname); -const char *linux_banner = +const char linux_banner[] = "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n"; ================================================= After looking over the MAINTAINERS file, I have no idea who the right point of contact / maintainer is for this code. (Or, I simply missed the right entry while reading, which has been known to happen.) Please advise. Signed-off-by: Vadim Lobanov - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/