mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 19:07:03 +07:00
b926c1daf3
Changing from ssusb_wakeup_enable/disable to ssusb_wakeup_set was done
in only one of two places in the kernel, the other one now causes a
build failure:
drivers/usb/mtu3/mtu3_plat.c: In function 'mtu3_suspend':
drivers/usb/mtu3/mtu3_plat.c:462:2: error: implicit declaration of function 'ssusb_wakeup_set'; did you mean 'ssusb_wakeup_disable'? [-Werror=implicit-function-declaration]
This adapts the dummy helpers the same way that the extern declarations
were.
Fixes: f0ede2c628
("usb: mtu3: supports remote wakeup for mt2712 with two SSUSB IPs")
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
100 lines
2.2 KiB
C
100 lines
2.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* mtu3_dr.h - dual role switch and host glue layer header
|
|
*
|
|
* Copyright (C) 2016 MediaTek Inc.
|
|
*
|
|
* Author: Chunfeng Yun <chunfeng.yun@mediatek.com>
|
|
*/
|
|
|
|
#ifndef _MTU3_DR_H_
|
|
#define _MTU3_DR_H_
|
|
|
|
#if IS_ENABLED(CONFIG_USB_MTU3_HOST) || IS_ENABLED(CONFIG_USB_MTU3_DUAL_ROLE)
|
|
|
|
int ssusb_host_init(struct ssusb_mtk *ssusb, struct device_node *parent_dn);
|
|
void ssusb_host_exit(struct ssusb_mtk *ssusb);
|
|
int ssusb_wakeup_of_property_parse(struct ssusb_mtk *ssusb,
|
|
struct device_node *dn);
|
|
int ssusb_host_enable(struct ssusb_mtk *ssusb);
|
|
int ssusb_host_disable(struct ssusb_mtk *ssusb, bool suspend);
|
|
void ssusb_wakeup_set(struct ssusb_mtk *ssusb, bool enable);
|
|
|
|
#else
|
|
|
|
static inline int ssusb_host_init(struct ssusb_mtk *ssusb,
|
|
|
|
struct device_node *parent_dn)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void ssusb_host_exit(struct ssusb_mtk *ssusb)
|
|
{}
|
|
|
|
static inline int ssusb_wakeup_of_property_parse(
|
|
struct ssusb_mtk *ssusb, struct device_node *dn)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int ssusb_host_enable(struct ssusb_mtk *ssusb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int ssusb_host_disable(struct ssusb_mtk *ssusb, bool suspend)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void ssusb_wakeup_set(struct ssusb_mtk *ssusb, bool enable)
|
|
{}
|
|
|
|
#endif
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_USB_MTU3_GADGET) || IS_ENABLED(CONFIG_USB_MTU3_DUAL_ROLE)
|
|
int ssusb_gadget_init(struct ssusb_mtk *ssusb);
|
|
void ssusb_gadget_exit(struct ssusb_mtk *ssusb);
|
|
#else
|
|
static inline int ssusb_gadget_init(struct ssusb_mtk *ssusb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void ssusb_gadget_exit(struct ssusb_mtk *ssusb)
|
|
{}
|
|
#endif
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_USB_MTU3_DUAL_ROLE)
|
|
int ssusb_otg_switch_init(struct ssusb_mtk *ssusb);
|
|
void ssusb_otg_switch_exit(struct ssusb_mtk *ssusb);
|
|
int ssusb_set_vbus(struct otg_switch_mtk *otg_sx, int is_on);
|
|
void ssusb_set_force_mode(struct ssusb_mtk *ssusb,
|
|
enum mtu3_dr_force_mode mode);
|
|
|
|
#else
|
|
|
|
static inline int ssusb_otg_switch_init(struct ssusb_mtk *ssusb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void ssusb_otg_switch_exit(struct ssusb_mtk *ssusb)
|
|
{}
|
|
|
|
static inline int ssusb_set_vbus(struct otg_switch_mtk *otg_sx, int is_on)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void
|
|
ssusb_set_force_mode(struct ssusb_mtk *ssusb, enum mtu3_dr_force_mode mode)
|
|
{}
|
|
|
|
#endif
|
|
|
|
#endif /* _MTU3_DR_H_ */
|