From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: In-Reply-To: <20070907032353.GA3082@localhost.localdomain> References: <20070907032353.GA3082@localhost.localdomain> Mime-Version: 1.0 (Apple Message framework v623) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <2fcd14e175d5a215cd8d602ac74fce21@kernel.crashing.org> From: Segher Boessenkool Subject: Re: Document and implement an improved flash device binding for powerpc (v5) Date: Fri, 7 Sep 2007 16:25:10 +0200 To: David Gibson Cc: linuxppc-dev@ozlabs.org, Paul Mackerras List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , > This patch replaces the binding for flash chips in > booting-without-of.txt with an clarified and improved version. It > also makes drivers/mtd/maps/physmap_of.c recognize this new binding. > Finally it revises the Ebony device tree source to use the new binding > as an example. > > Signed-off-by: David Gibson Acked-by: Segher Boessenkool Thanks for doing this work David! > + /* First look for RedBoot table or partitions on the command > + * line, these take precedence over device tree information */ Any specific reason you chose this order? Just curious... > + .data = (void *)"jedec_probe", Hrm, this cast is only getting rid of the const-ness of the string literal -- maybe .data should be declared const, or does the majority of users want it writable? Segher