1 /* SPDX-License-Identifier: GPL-2.0 */ 2 3 #ifndef __USB_TYPEC_RETIMER__ 4 #define __USB_TYPEC_RETIMER__ 5 6 #include <linux/usb/typec_retimer.h> 7 8 struct typec_retimer { 9 struct device dev; 10 typec_retimer_set_fn_t set; 11 }; 12 13 #define to_typec_retimer(_dev_) container_of(_dev_, struct typec_retimer, dev) 14 15 #endif /* __USB_TYPEC_RETIMER__ */ 16