Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 
0003 #ifndef __USB_TYPEC_RETIMER__
0004 #define __USB_TYPEC_RETIMER__
0005 
0006 #include <linux/usb/typec_retimer.h>
0007 
0008 struct typec_retimer {
0009     struct device dev;
0010     typec_retimer_set_fn_t set;
0011 };
0012 
0013 #define to_typec_retimer(_dev_) container_of(_dev_, struct typec_retimer, dev)
0014 
0015 #endif /* __USB_TYPEC_RETIMER__ */