From patchwork Thu Jun 29 11:39:11 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Claudiu Beznea X-Patchwork-Id: 782176 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3wyyPk0GY9z9s7v for ; Thu, 29 Jun 2017 21:39:54 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752784AbdF2Ljj (ORCPT ); Thu, 29 Jun 2017 07:39:39 -0400 Received: from esa3.microchip.iphmx.com ([68.232.153.233]:44620 "EHLO esa3.microchip.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751974AbdF2Ljg (ORCPT ); Thu, 29 Jun 2017 07:39:36 -0400 X-IronPort-AV: E=Sophos;i="5.40,280,1496127600"; d="scan'208";a="4244827" Received: from exsmtp02.microchip.com (HELO email.microchip.com) ([198.175.253.38]) by esa3.microchip.iphmx.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 29 Jun 2017 04:39:35 -0700 Received: from m18063-ThinkPad-T460p.mchp-main.com (10.10.76.4) by chn-sv-exch02.mchp-main.com (10.10.76.38) with Microsoft SMTP Server id 14.3.352.0; Thu, 29 Jun 2017 04:39:35 -0700 From: Claudiu Beznea To: , , , , CC: , , , , Claudiu Beznea Subject: [RFC PATCH 3/3] dt-bindings: i2c: eeprom: document "start-offset" binding Date: Thu, 29 Jun 2017 14:39:11 +0300 Message-ID: <1498736351-9021-4-git-send-email-claudiu.beznea@microchip.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1498736351-9021-1-git-send-email-claudiu.beznea@microchip.com> References: <1498736351-9021-1-git-send-email-claudiu.beznea@microchip.com> MIME-Version: 1.0 Sender: linux-i2c-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-i2c@vger.kernel.org Document "start-offset" binding that will be used by at24 EEPROM driver. Signed-off-by: Claudiu Beznea --- Documentation/devicetree/bindings/eeprom/eeprom.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/eeprom/eeprom.txt b/Documentation/devicetree/bindings/eeprom/eeprom.txt index a50dc01..e0bec50 100644 --- a/Documentation/devicetree/bindings/eeprom/eeprom.txt +++ b/Documentation/devicetree/bindings/eeprom/eeprom.txt @@ -35,10 +35,13 @@ Optional properties: - read-only: this parameterless property disables writes to the eeprom + - start-offset: offset in EEPROM to start reading from + Example: eeprom@52 { compatible = "atmel,24c32"; reg = <0x52>; pagesize = <32>; + start-offset = /bits/ 8 <0xf8>; };