mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
1221ce459d
Now, arch/${ARCH}/include/asm/errno.h and include/linux/errno.h have the same content. (both just wrap <asm-generic/errno.h>) Replace all include directives for <asm/errno.h> with <linux/errno.h>. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> [trini: Fixup include/clk.] Signed-off-by: Tom Rini <trini@konsulko.com>
38 lines
886 B
C
38 lines
886 B
C
/*
|
|
* (C) Copyright 2014 CompuLab, Ltd. <www.compulab.co.il>
|
|
*
|
|
* Authors: Igor Grinberg <grinberg@compulab.co.il>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _CL_COMMON_
|
|
#define _CL_COMMON_
|
|
|
|
#include <linux/errno.h>
|
|
|
|
void cl_print_pcb_info(void);
|
|
|
|
#ifdef CONFIG_CMD_USB
|
|
int cl_usb_hub_init(int gpio, const char *label);
|
|
void cl_usb_hub_deinit(int gpio);
|
|
#else /* !CONFIG_CMD_USB */
|
|
static inline int cl_usb_hub_init(int gpio, const char *label)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
static inline void cl_usb_hub_deinit(int gpio) {}
|
|
#endif /* CONFIG_CMD_USB */
|
|
|
|
#ifdef CONFIG_SMC911X
|
|
int cl_omap3_smc911x_init(int id, int cs, u32 base_addr,
|
|
int (*reset)(int), int rst_gpio);
|
|
#else /* !CONFIG_SMC911X */
|
|
static inline int cl_omap3_smc911x_init(int id, int cs, u32 base_addr,
|
|
int (*reset)(int), int rst_gpio)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
#endif /* CONFIG_SMC911X */
|
|
|
|
#endif /* _CL_COMMON_ */
|