From mboxrd@z Thu Jan 1 00:00:00 1970 From: Magnus Damm Date: Thu, 29 May 2014 13:53:57 +0000 Subject: Re: [PATCH v2 04/05] staging: board: Initial board staging support Message-Id: List-Id: References: <20140529131650.2329.3197.sendpatchset@w520> <20140529131732.2329.50630.sendpatchset@w520> <20140529132034.GB15585@mwanda> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Dan Carpenter Cc: linux-kernel , devel , SH-Linux , Greg KH , "Simon Horman [Horms]" , Geert Uytterhoeven , Laurent Pinchart , Olof Johansson On Thu, May 29, 2014 at 10:27 PM, Magnus Damm wrote: > Hi Dan, > > On Thu, May 29, 2014 at 10:20 PM, Dan Carpenter > wrote: >> On Thu, May 29, 2014 at 10:17:32PM +0900, Magnus Damm wrote: >>> --- /dev/null >>> +++ work/drivers/staging/board/Kconfig 2014-05-29 21:40:41.000000000 +0900 >>> @@ -0,0 +1,7 @@ >>> +config STAGING_BOARD >>> + boolean "Staging Board Support" >>> + help >>> + Select to enable per-board staging support code. >>> + >>> + If in doubt, say N here. >>> + >> >> Actually, you're probably going to need to add a bunch of dependencies >> here or it will break "make randconfig" right away. Sorry that I forgot >> about this in the first review. > > Good point, thanks for checking. I will have a look at this and add > dependencies to make sure it builds on a wide range of platforms. To begin with, this hunk fixes the i386_defconfig + staging board build. --- 0011/drivers/staging/board/Kconfig +++ work/drivers/staging/board/Kconfig 2014-05-29 22:32:39.000000000 +0900 @@ -1,5 +1,6 @@ config STAGING_BOARD boolean "Staging Board Support" + depends on OF && OF_ADDRESS help Select to enable per-board staging support code. Actually, there are not many dependencies - I believe the OF bits is about it. Cheers, / magnus