Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935853Ab2JaSGe (ORCPT ); Wed, 31 Oct 2012 14:06:34 -0400 Received: from li42-95.members.linode.com ([209.123.162.95]:46102 "EHLO li42-95.members.linode.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933501Ab2JaSGb (ORCPT ); Wed, 31 Oct 2012 14:06:31 -0400 Subject: Re: [RFC-v2 2/7] capebus: Add beaglebone board support Mime-Version: 1.0 (Apple Message framework v1085) Content-Type: text/plain; charset=us-ascii From: Pantelis Antoniou In-Reply-To: <20121031175546.GI12739@atomide.com> Date: Wed, 31 Oct 2012 20:06:26 +0200 Cc: Paul Walmsley , "Hiremath, Vaibhav" , devicetree-discuss@lists.ozlabs.org, linux-kernel@vger.kernel.org, Koen Kooi , Matt Porter , Russ Dill , linux-omap@vger.kernel.org Content-Transfer-Encoding: 7bit Message-Id: References: <1351783952-11804-1-git-send-email-panto@antoniou-consulting.com> <1351783952-11804-3-git-send-email-panto@antoniou-consulting.com> <20121031175546.GI12739@atomide.com> To: Tony Lindgren X-Mailer: Apple Mail (2.1085) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2665 Lines: 83 On Oct 31, 2012, at 7:55 PM, Tony Lindgren wrote: > * Pantelis Antoniou [121031 10:41]: >> Introduce beaglebone capebus board support. > ... > >> --- /dev/null >> +++ b/drivers/capebus/boards/Kconfig >> @@ -0,0 +1,6 @@ >> +config CAPEBUS_BONE_CONTROLLER >> + bool "Beaglebone capebus board controller" >> + depends on CAPEBUS && ARCH_OMAP2PLUS && OF && I2C >> + default n > > The default is n, so you can remove "default n" from your > patches. You're right. > >> +++ b/drivers/capebus/boards/capebus-bone-generic.c >> @@ -0,0 +1,237 @@ >> +/* >> + * TI Beaglebone capebus controller - Generic devices >> + * >> + * Copyright (C) 2012 Pantelis Antoniou >> + * Copyright (C) 2012 Texas Instruments Inc. >> + * >> + * This program is free software; you can redistribute it and/or modify >> + * it under the terms of the GNU General Public License as published by >> + * the Free Software Foundation; either version 2 of the License, or >> + * (at your option) any later version. >> + * >> + * This program is distributed in the hope that it will be useful, >> + * but WITHOUT ANY WARRANTY; without even the implied warranty of >> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >> + * GNU General Public License for more details. >> + * >> + * You should have received a copy of the GNU General Public License >> + * along with this program; if not, write to the Free Software >> + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. >> + */ >> + >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include