mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-23 12:23:34 +00:00
33 lines
794 B
C
33 lines
794 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* xhci-mtk-unusuallib.h -- xhci toolkit header file
|
|
*
|
|
* Copyright (C) 2021 Mediatek Inc - http://www.mediatek.com
|
|
*
|
|
* Author: Zhanyong Wang <zhanyong.wang@mediatek.com>
|
|
* Shaocheng.Wang <shaocheng.wang@mediatek.com>
|
|
* Chunfeng.Yun <chunfeng.yun@mediatek.com>
|
|
*/
|
|
|
|
#ifndef __XHCI_MTK_TEST_H
|
|
#define __XHCI_MTK_TEST_H
|
|
|
|
#ifdef CONFIG_USB_XHCI_MTK_DEBUGFS
|
|
int hqa_create_attr(struct device *dev);
|
|
void hqa_remove_attr(struct device *dev);
|
|
void ssusb_remap_ip_regs(struct device *dev);
|
|
|
|
#else
|
|
static inline int hqa_create_attr(struct device *dev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline void hqa_remove_attr(struct device *dev)
|
|
{
|
|
}
|
|
static inline void ssusb_remap_ip_regs(struct device *dev)
|
|
{
|
|
}
|
|
#endif
|
|
#endif /* __XHCI_MTK_TEST_H */
|