From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-iw0-f203.google.com (mail-iw0-f203.google.com [209.85.223.203]) by ozlabs.org (Postfix) with ESMTP id 08AD0B7D30 for ; Wed, 10 Feb 2010 04:22:26 +1100 (EST) Received: by iwn41 with SMTP id 41so2852666iwn.9 for ; Tue, 09 Feb 2010 09:22:25 -0800 (PST) MIME-Version: 1.0 Sender: glikely@secretlab.ca In-Reply-To: <20100205205041.GA4178@oksana.dev.rtsoft.ru> References: <20100205204949.GA2575@oksana.dev.rtsoft.ru> <20100205205041.GA4178@oksana.dev.rtsoft.ru> From: Grant Likely Date: Tue, 9 Feb 2010 10:22:04 -0700 Message-ID: Subject: Re: [PATCH 1/3] of platforms: Move common static initialization to of_node_init() To: Anton Vorontsov Content-Type: text/plain; charset=ISO-8859-1 Cc: Michal Simek , David Brownell , devicetree-discuss@lists.ozlabs.org, linux-kernel@vger.kernel.org, linuxppc-dev@ozlabs.org, microblaze-uclinux@itee.uq.edu.au, David Miller List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Fri, Feb 5, 2010 at 1:50 PM, Anton Vorontsov wrote: > So far of_node_init() just initializes a kref, later we'll have to > initialize other fields (for example node->data_lock). > > Signed-off-by: Anton Vorontsov > --- > =A0arch/microblaze/kernel/prom.c =A0 =A0 =A0 =A0 =A0 =A0 | =A0 =A04 ++-- > =A0arch/powerpc/kernel/prom.c =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0| =A0 =A04 += +-- > =A0arch/powerpc/platforms/iseries/vio.c =A0 =A0 =A0| =A0 =A05 +++-- > =A0arch/powerpc/platforms/pseries/dlpar.c =A0 =A0| =A0 =A07 ++++--- > =A0arch/powerpc/platforms/pseries/reconfig.c | =A0 =A07 ++++--- > =A0arch/powerpc/sysdev/msi_bitmap.c =A0 =A0 =A0 =A0 =A0| =A0 =A04 ++-- > =A0arch/sparc/kernel/prom_common.c =A0 =A0 =A0 =A0 =A0 | =A0 =A06 +++--- > =A0drivers/of/base.c =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 | = =A0 10 ++++++++++ > =A0include/linux/of.h =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0| = =A0 =A02 ++ > =A09 files changed, 32 insertions(+), 17 deletions(-) unflatten_dt_*() has been merged and moved to drivers/of. Please rebase this series on top of my next-devicetree branch in this git tree: git://git.secretlab.ca/git/linux-2.6 Otherwise, this looks fine to me. g.