From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933478Ab2JaRzy (ORCPT ); Wed, 31 Oct 2012 13:55:54 -0400 Received: from mho-04-ewr.mailhop.org ([204.13.248.74]:55358 "EHLO mho-02-ewr.mailhop.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1756319Ab2JaRzw (ORCPT ); Wed, 31 Oct 2012 13:55:52 -0400 X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 98.234.237.12 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1/n8r+RdPtZBclRykIFE0W/ Date: Wed, 31 Oct 2012 10:55:46 -0700 From: Tony Lindgren To: Pantelis Antoniou 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 Subject: Re: [RFC-v2 2/7] capebus: Add beaglebone board support Message-ID: <20121031175546.GI12739@atomide.com> References: <1351783952-11804-1-git-send-email-panto@antoniou-consulting.com> <1351783952-11804-3-git-send-email-panto@antoniou-consulting.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1351783952-11804-3-git-send-email-panto@antoniou-consulting.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * 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. > +++ 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