]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/dm/util.h
arm: mx6: tqma6: use default CONFIG_SYS_PBSIZE
[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 9
a94f468f 10#ifdef CONFIG_DM_WARN
6494d708 11void dm_warn(const char *fmt, ...);
a94f468f
SG
12#else
13static inline void dm_warn(const char *fmt, ...)
14{
15}
16#endif
6494d708
SG
17
18#ifdef DEBUG
19void dm_dbg(const char *fmt, ...);
20#else
21static inline void dm_dbg(const char *fmt, ...)
22{
23}
24#endif
25
26struct list_head;
27
28/**
29 * list_count_items() - Count number of items in a list
30 *
31 * @param head: Head of list
32 * @return number of items, or 0 if empty
33 */
34int list_count_items(struct list_head *head);
35
36#endif