From patchwork Mon Jan 3 10:32:36 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michal Simek X-Patchwork-Id: 77243 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 708D2B6F1E for ; Mon, 3 Jan 2011 21:33:25 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753617Ab1ACKcm (ORCPT ); Mon, 3 Jan 2011 05:32:42 -0500 Received: from mail-bw0-f46.google.com ([209.85.214.46]:36379 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752859Ab1ACKcl (ORCPT ); Mon, 3 Jan 2011 05:32:41 -0500 Received: by bwz15 with SMTP id 15so13591214bwz.19 for ; Mon, 03 Jan 2011 02:32:40 -0800 (PST) Received: by 10.204.23.66 with SMTP id q2mr5165037bkb.130.1294050760224; Mon, 03 Jan 2011 02:32:40 -0800 (PST) Received: from localhost ([178.23.216.97]) by mx.google.com with ESMTPS id b17sm11317638bku.8.2011.01.03.02.32.37 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 03 Jan 2011 02:32:38 -0800 (PST) From: Michal Simek To: grant.likely@secretlab.ca Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree-discuss@lists.ozlabs.org, davem@davemloft.net, Michal Simek Subject: [PATCH] ll_temac: Fix section mismatch from the temac_of_probe Date: Mon, 3 Jan 2011 11:32:36 +0100 Message-Id: <1294050756-31099-1-git-send-email-monstr@monstr.eu> X-Mailer: git-send-email 1.5.5.1 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Replace __init by __devinit. Warning message: WARNING: vmlinux.o(.data+0xbc14): Section mismatch in reference from the variable temac_of_driver to the function .init.text:temac_of_probe() The variable temac_of_driver references the function __init temac_of_probe() If the reference is valid then annotate the variable with __init* or __refdata (see linux/init.h) or name the variable: *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console, Signed-off-by: Michal Simek Acked-by: Grant Likely --- drivers/net/ll_temac_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/ll_temac_main.c b/drivers/net/ll_temac_main.c index 9f8e702..beb6ed8 100644 --- a/drivers/net/ll_temac_main.c +++ b/drivers/net/ll_temac_main.c @@ -952,7 +952,7 @@ static const struct attribute_group temac_attr_group = { .attrs = temac_device_attrs, }; -static int __init +static int __devinit temac_of_probe(struct platform_device *op, const struct of_device_id *match) { struct device_node *np;