From patchwork Thu Jul 6 10:16:57 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Claudiu Beznea X-Patchwork-Id: 785103 X-Patchwork-Delegate: bartekgola@gmail.com 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 3x3DFX05mJz9s76 for ; Thu, 6 Jul 2017 20:17:36 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752340AbdGFKRW (ORCPT ); Thu, 6 Jul 2017 06:17:22 -0400 Received: from esa6.microchip.iphmx.com ([216.71.154.253]:58707 "EHLO esa6.microchip.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751059AbdGFKRV (ORCPT ); Thu, 6 Jul 2017 06:17:21 -0400 X-IronPort-AV: E=Sophos;i="5.40,316,1496127600"; d="scan'208";a="1984765" Received: from exsmtp02.microchip.com (HELO email.microchip.com) ([198.175.253.38]) by esa6.microchip.iphmx.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 06 Jul 2017 03:17:20 -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, 6 Jul 2017 03:17:19 -0700 From: Claudiu Beznea To: , , , , CC: , , , , , Claudiu Beznea Subject: [PATCH 3/3] dt-bindings: i2c: eeprom: document "mac-offset" binding Date: Thu, 6 Jul 2017 13:16:57 +0300 Message-ID: <1499336217-16913-4-git-send-email-claudiu.beznea@microchip.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1499336217-16913-1-git-send-email-claudiu.beznea@microchip.com> References: <1499336217-16913-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 "mac-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..3dd267c 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 + - mac-offset: offset in EEPROM where MAC address starts + Example: eeprom@52 { compatible = "atmel,24c32"; reg = <0x52>; pagesize = <32>; + mac-offset = <0xf8>; };