From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933076AbeBLIw1 (ORCPT ); Mon, 12 Feb 2018 03:52:27 -0500 Received: from mail-pg0-f67.google.com ([74.125.83.67]:32904 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932967AbeBLIwT (ORCPT ); Mon, 12 Feb 2018 03:52:19 -0500 X-Google-Smtp-Source: AH8x22426yhqofDEHJDi5Bgw/2TwumnY1QByvK8Aw3rsglS4qGTVrXVu++WEWyvFYo+mAplFTBMxLA== From: frowand.list@gmail.com To: Rob Herring , pantelis.antoniou@konsulko.com, Pantelis Antoniou Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, geert@linux-m68k.org Subject: [PATCH v2 2/4] of: Documentation: of_overlay_apply() replaced by of_overlay_fdt_apply() Date: Mon, 12 Feb 2018 00:51:34 -0800 Message-Id: <1518425496-12159-3-git-send-email-frowand.list@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1518425496-12159-1-git-send-email-frowand.list@gmail.com> References: <1518425496-12159-1-git-send-email-frowand.list@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Frank Rowand Signed-off-by: Frank Rowand --- Changes from v1: - new patch Documentation/devicetree/overlay-notes.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/overlay-notes.txt b/Documentation/devicetree/overlay-notes.txt index c4aa0adf13ec..5175a24d387e 100644 --- a/Documentation/devicetree/overlay-notes.txt +++ b/Documentation/devicetree/overlay-notes.txt @@ -87,8 +87,8 @@ Overlay in-kernel API The API is quite easy to use. -1. Call of_overlay_apply() to create and apply an overlay changeset. The return -value is an error or a cookie identifying this overlay. +1. Call of_overlay_fdt_apply() to create and apply an overlay changeset. The +return value is an error or a cookie identifying this overlay. 2. Call of_overlay_remove() to remove and cleanup the overlay changeset previously created via the call to of_overlay_apply(). Removal of an overlay -- Frank Rowand