2 * Copyright (c) 2013 Google, Inc
4 * SPDX-License-Identifier: GPL-2.0+
11 void dm_warn(const char *fmt, ...);
13 static inline void dm_warn(const char *fmt, ...)
19 void dm_dbg(const char *fmt, ...);
21 static inline void dm_dbg(const char *fmt, ...)
29 * list_count_items() - Count number of items in a list
31 * @param head: Head of list
32 * @return number of items, or 0 if empty
34 int list_count_items(struct list_head *head);
36 /* Dump out a tree of all devices */
37 void dm_dump_all(void);
39 /* Dump out a list of uclasses and their devices */
40 void dm_dump_uclass(void);
42 #ifdef CONFIG_DEBUG_DEVRES
43 /* Dump out a list of device resources */
44 void dm_dump_devres(void);
46 static inline void dm_dump_devres(void)