]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/dm/util.h
Merge branch 'master' of git://git.denx.de/u-boot-usb
[people/ms/u-boot.git] / include / dm / util.h
CommitLineData
6494d708
SG
1/*
2 * Copyright (c) 2013 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef __DM_UTIL_H
b1799fcb 8#define __DM_UTIL_H
6494d708
SG
9
10void dm_warn(const char *fmt, ...);
11
12#ifdef DEBUG
13void dm_dbg(const char *fmt, ...);
14#else
15static inline void dm_dbg(const char *fmt, ...)
16{
17}
18#endif
19
20struct list_head;
21
22/**
23 * list_count_items() - Count number of items in a list
24 *
25 * @param head: Head of list
26 * @return number of items, or 0 if empty
27 */
28int list_count_items(struct list_head *head);
29
30#endif