0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef __LINUX_SSIP_SLAVE_H__
0013 #define __LINUX_SSIP_SLAVE_H__
0014
0015 #include <linux/hsi/hsi.h>
0016
0017 static inline void ssip_slave_put_master(struct hsi_client *master)
0018 {
0019 }
0020
0021 struct hsi_client *ssip_slave_get_master(struct hsi_client *slave);
0022 int ssip_slave_start_tx(struct hsi_client *master);
0023 int ssip_slave_stop_tx(struct hsi_client *master);
0024 void ssip_reset_event(struct hsi_client *master);
0025
0026 int ssip_slave_running(struct hsi_client *master);
0027
0028 #endif
0029