mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
81530a38a3
Move private definitions from header to phy-omap-usb2.c file. Get rid of unused data structures usb_dpll_params and omap_usb_phy_type. Signed-off-by: Roger Quadros <rogerq@ti.com> Link: https://lore.kernel.org/r/20200515080518.26870-2-rogerq@ti.com Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
25 lines
679 B
C
25 lines
679 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* omap_usb.h -- omap usb2 phy header file
|
|
*
|
|
* Copyright (C) 2012-2020 Texas Instruments Incorporated - http://www.ti.com
|
|
* Author: Kishon Vijay Abraham I <kishon@ti.com>
|
|
*/
|
|
|
|
#ifndef __DRIVERS_OMAP_USB2_H
|
|
#define __DRIVERS_OMAP_USB2_H
|
|
|
|
#include <linux/usb/phy_companion.h>
|
|
|
|
#define phy_to_omapusb(x) container_of((x), struct omap_usb, phy)
|
|
|
|
#if defined(CONFIG_OMAP_USB2) || defined(CONFIG_OMAP_USB2_MODULE)
|
|
extern int omap_usb2_set_comparator(struct phy_companion *comparator);
|
|
#else
|
|
static inline int omap_usb2_set_comparator(struct phy_companion *comparator)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
#endif
|
|
|
|
#endif /* __DRIVERS_OMAP_USB_H */
|