From patchwork Tue Aug 28 21:34:27 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aaro Koskinen X-Patchwork-Id: 1382521 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id E72D53FDF5 for ; Tue, 28 Aug 2012 21:34:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753299Ab2H1Vea (ORCPT ); Tue, 28 Aug 2012 17:34:30 -0400 Received: from filtteri1.pp.htv.fi ([213.243.153.184]:37225 "EHLO filtteri1.pp.htv.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752432Ab2H1Ve3 (ORCPT ); Tue, 28 Aug 2012 17:34:29 -0400 Received: from localhost (localhost [127.0.0.1]) by filtteri1.pp.htv.fi (Postfix) with ESMTP id B77F921B2C0 for ; Wed, 29 Aug 2012 00:34:28 +0300 (EEST) X-Virus-Scanned: Debian amavisd-new at pp.htv.fi Received: from smtp6.welho.com ([213.243.153.40]) by localhost (filtteri1.pp.htv.fi [213.243.153.184]) (amavisd-new, port 10024) with ESMTP id sG7U1zJqMXfT for ; Wed, 29 Aug 2012 00:34:28 +0300 (EEST) Received: from blackmetal.bb.dnainternet.fi (212-149-209-232.bb.dnainternet.fi [212.149.209.232]) by smtp6.welho.com (Postfix) with ESMTP id 5888C5BC006 for ; Wed, 29 Aug 2012 00:34:28 +0300 (EEST) From: Aaro Koskinen To: linux-omap@vger.kernel.org Subject: [RFC PATCH 5/5] arm: omap: n8x0: enable retu Date: Wed, 29 Aug 2012 00:34:27 +0300 Message-Id: <1346189667-32330-6-git-send-email-aaro.koskinen@iki.fi> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1346189667-32330-1-git-send-email-aaro.koskinen@iki.fi> References: <1346189667-32330-1-git-send-email-aaro.koskinen@iki.fi> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Add Retu configuration. Signed-off-by: Aaro Koskinen Acked-by: Tony Lindgren Acked-by: Felipe Balbi --- arch/arm/mach-omap2/board-n8x0.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/board-n8x0.c b/arch/arm/mach-omap2/board-n8x0.c index 8ea0dea..6ac8cd9 100644 --- a/arch/arm/mach-omap2/board-n8x0.c +++ b/arch/arm/mach-omap2/board-n8x0.c @@ -58,8 +58,16 @@ static struct platform_device n8x0_cbus_device = { }, }; +static struct i2c_board_info n8x0_i2c_board_info_3[] __initdata = { + { + I2C_BOARD_INFO("retu-mfd", 0x01), + }, +}; + static void __init n8x0_cbus_init(void) { + i2c_register_board_info(3, n8x0_i2c_board_info_3, + ARRAY_SIZE(n8x0_i2c_board_info_3)); platform_device_register(&n8x0_cbus_device); } #else /* CONFIG_I2C_CBUS */