From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758749Ab2IKOKh (ORCPT ); Tue, 11 Sep 2012 10:10:37 -0400 Received: from moutng.kundenserver.de ([212.227.17.10]:61331 "EHLO moutng.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754828Ab2IKOKf (ORCPT ); Tue, 11 Sep 2012 10:10:35 -0400 From: Arnd Bergmann To: Guennadi Liakhovetski Subject: Re: [PATCH 04/16] ARM: imx: move platform_data definitions Date: Tue, 11 Sep 2012 14:10:05 +0000 User-Agent: KMail/1.12.2 (Linux/3.5.0; KDE/4.3.2; x86_64; ; ) Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Russell King , Sascha Hauer , Vinod Koul , Dan Williams , "Ben Dooks (embedded platforms)" , "Wolfram Sang (embedded platforms)" , Mauro Carvalho Chehab , Chris Ball , David Woodhouse , Grant Likely , Alan Cox , "Greg Kroah-Hartman" , Felipe Balbi , Alan Stern , Florian Tobias Schandinat , Liam Girdwood , Mark Brown , Javier Martin , Shawn Guo References: <1347368350-31212-1-git-send-email-arnd@arndb.de> <1347368390-31252-4-git-send-email-arnd@arndb.de> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201209111410.05698.arnd@arndb.de> X-Provags-ID: V02:K0:d9+MfU37KoYplqBgoSLQgNlJ5oSEnCikeELanfZdpad SpICJnpvRcxKZAfIfoLg+IdFKoPmhfH9TxNVwhdea3hWU0Znz6 sx3mePHUBIhYThveHdA4nKW0ryrnYVIid4OtS0qYUei0gu6CKN nT9fVCzniWBKdIUQBN99BhO9DNQucKrMdAktf+m6+xrRUDWkhH XujOsK3TVKOkpCQO2p2ObA2t+yJiq5Vx4rYN4wA1e0YXvOA0Bt 0SnnQPirQ5gWygwKQXR3NlW8cCJIWO1VGhwL7kExlHbK7OTmW4 2kTAATbsWyTIq0M9JM8YwMel2B0pNxL1yBHU7JB+mRvWbVx5xp +W/w/tvS1V13uEEqMAbw= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tuesday 11 September 2012, Guennadi Liakhovetski wrote: > Hi Arnd > > It probably wouldn't be very difficult to also include > arch/arm/plat-mxc/include/mach/ipu.h in this your patch, but you can also > leave it for later. Just to make sure it's not something that would make > your future patching more complicated. > For now, I've done only the straight renames but left the ones that looked like they need more complex changes of any sort. Looking at ipu.h, it seems that this header file defines data that is used inside of the driver but not in the platform device definition, so we'd need to split it up and move the part that is only used inside of the driver into a different place. Of course, I could alo be mistaken and not have realized that actually all of this file is platform data. Arnd