Lines Matching defs:hsi
58 * struct hsi_channel - channel resource used by the hsi clients
280 void hsi_put_controller(struct hsi_controller *hsi);
281 int hsi_register_controller(struct hsi_controller *hsi);
282 void hsi_unregister_controller(struct hsi_controller *hsi);
299 static inline void hsi_controller_set_drvdata(struct hsi_controller *hsi,
302 dev_set_drvdata(&hsi->device, data);
305 static inline void *hsi_controller_drvdata(struct hsi_controller *hsi)
307 return dev_get_drvdata(&hsi->device);
310 static inline struct hsi_port *hsi_find_port_num(struct hsi_controller *hsi,
313 return (num < hsi->num_ports) ? hsi->port[num] : NULL;