Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752072AbZL1Qr4 (ORCPT ); Mon, 28 Dec 2009 11:47:56 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751690AbZL1Qrz (ORCPT ); Mon, 28 Dec 2009 11:47:55 -0500 Received: from exprod6ob109.obsmtp.com ([64.18.1.22]:51871 "HELO psmtp.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with SMTP id S1750963AbZL1Qry convert rfc822-to-8bit (ORCPT ); Mon, 28 Dec 2009 11:47:54 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Subject: [PATCH] net/ipv4/ipconfig.c: local symbols should be static Date: Mon, 28 Dec 2009 11:47:51 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [PATCH] net/ipv4/ipconfig.c: local symbols should be static Thread-Index: AcqH3X5Tr6v9MJbYRC+nusqZvudHVw== From: "H Hartley Sweeten" To: , Cc: "David Miller" X-OriginalArrivalTime: 28 Dec 2009 16:47:51.0580 (UTC) FILETIME=[7EA5D5C0:01CA87DD] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 962 Lines: 25 The symbol 'ic_dev_xid' should be static since it is not exported. Signed-off-by: H Hartley Sweeten Cc: David S. Miller --- diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c index 10a6a60..0a788bf 100644 --- a/net/ipv4/ipconfig.c +++ b/net/ipv4/ipconfig.c @@ -139,7 +139,7 @@ __be32 ic_servaddr = NONE; /* Boot server IP address */ __be32 root_server_addr = NONE; /* Address of NFS server */ u8 root_server_path[256] = { 0, }; /* Path to mount as root */ -u32 ic_dev_xid; /* Device under configuration */ +static u32 ic_dev_xid; /* Device under configuration */ /* vendor class identifier */ static char vendor_class_identifier[253] __initdata; -- 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/