From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753102Ab1JRTAS (ORCPT ); Tue, 18 Oct 2011 15:00:18 -0400 Received: from mail.fuel7.com ([74.222.0.51]:44534 "EHLO mail.fuel7.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752708Ab1JRTAL (ORCPT ); Tue, 18 Oct 2011 15:00:11 -0400 From: Kyle Manna To: linux-kernel@vger.kernel.org, Samuel Ortiz , Liam Girdwood Cc: Kyle Manna , Jorge Eduardo Candelaria , Graeme Gregory Subject: [PATCH 2/6] mfd: TPS65910: Add I2C slave address macros Date: Tue, 18 Oct 2011 13:26:24 -0500 Message-Id: <1318962388-26151-3-git-send-email-kyle.manna@fuel7.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1318962388-26151-1-git-send-email-kyle.manna@fuel7.com> References: <1318962388-26151-1-git-send-email-kyle.manna@fuel7.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add I2C slave addresses to the header file so that platform definitions can use them. Signed-off-by: Kyle Manna --- include/linux/mfd/tps65910.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/linux/mfd/tps65910.h b/include/linux/mfd/tps65910.h index 82b4c88..399d80a 100644 --- a/include/linux/mfd/tps65910.h +++ b/include/linux/mfd/tps65910.h @@ -21,6 +21,10 @@ #define TPS65910 0 #define TPS65911 1 +/* I2C Slave Address 7-bit */ +#define TPS65910_I2C_ID0 0x12 /* Smart Reflex */ +#define TPS65910_I2C_ID1 0x2D /* general-purpose control */ + /* TPS regulator type list */ #define REGULATOR_LDO 0 #define REGULATOR_DCDC 1 -- 1.7.5.4