blob: ffe1ef8174f21eab57538c1e6244ad73cff63924 [file] [log] [blame]
Igor Grinberg3c5dc282014-11-03 11:32:18 +02001/*
2 * (C) Copyright 2014 CompuLab, Ltd. <www.compulab.co.il>
3 *
4 * Authors: Igor Grinberg <grinberg@compulab.co.il>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef _CL_COMMON_
10#define _CL_COMMON_
11
Igor Grinberg9c687fd2014-11-03 11:32:19 +020012#include <asm/errno.h>
13
Igor Grinberg3c5dc282014-11-03 11:32:18 +020014void cl_print_pcb_info(void);
15
Igor Grinberg9c687fd2014-11-03 11:32:19 +020016#ifdef CONFIG_CMD_USB
17int cl_usb_hub_init(int gpio, const char *label);
18void cl_usb_hub_deinit(int gpio);
19#else /* !CONFIG_CMD_USB */
20static inline int cl_usb_hub_init(int gpio, const char *label)
21{
22 return -ENOSYS;
23}
24static inline void cl_usb_hub_deinit(int gpio) {}
25#endif /* CONFIG_CMD_USB */
26
Igor Grinberg3c5dc282014-11-03 11:32:18 +020027#endif /* _CL_COMMON_ */