From mboxrd@z Thu Jan 1 00:00:00 1970 From: Weijie Gao Date: Wed, 15 Apr 2020 15:10:12 +0800 Subject: [PATCH v5 01/14] dm: core: Add function to get child count of ofnode or device In-Reply-To: <1586497552-12194-2-git-send-email-chunfeng.yun@mediatek.com> References: <1586497552-12194-1-git-send-email-chunfeng.yun@mediatek.com> <1586497552-12194-2-git-send-email-chunfeng.yun@mediatek.com> Message-ID: <1586934612.26858.118.camel@mcddlt001> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Fri, 2020-04-10 at 13:45 +0800, Chunfeng Yun wrote: > This patch add function used to get the child count of > a ofnode or a device > > Signed-off-by: Chunfeng Yun > --- > v4~v5: no changes > > v3: > 1. add non/inline function dev_get_child_count() instead of macro suggested by Simon > > v2: > 1. move ofnode_get_child_count() into ofnode.c suggested by Simon > 2. add a new macro dev_get_child_count() > --- > drivers/core/ofnode.c | 11 +++++++++++ > drivers/core/read.c | 5 +++++ > include/dm/ofnode.h | 8 ++++++++ > include/dm/read.h | 13 +++++++++++++ > 4 files changed, 37 insertions(+) > Reviewed-by: Weijie Gao