diff options
| -rw-r--r-- | drivers/hsi/hsi.c | 10 | ||||
| -rw-r--r-- | include/linux/hsi/hsi.h | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/drivers/hsi/hsi.c b/drivers/hsi/hsi.c index 749f7b5c8179..e96a9874b1a4 100644 --- a/drivers/hsi/hsi.c +++ b/drivers/hsi/hsi.c | |||
| @@ -130,6 +130,16 @@ static void hsi_port_release(struct device *dev) | |||
| 130 | } | 130 | } |
| 131 | 131 | ||
| 132 | /** | 132 | /** |
| 133 | * hsi_unregister_port - Unregister an HSI port | ||
| 134 | * @port: The HSI port to unregister | ||
| 135 | */ | ||
| 136 | void hsi_port_unregister_clients(struct hsi_port *port) | ||
| 137 | { | ||
| 138 | device_for_each_child(&port->device, NULL, hsi_remove_client); | ||
| 139 | } | ||
| 140 | EXPORT_SYMBOL_GPL(hsi_port_unregister_clients); | ||
| 141 | |||
| 142 | /** | ||
| 133 | * hsi_unregister_controller - Unregister an HSI controller | 143 | * hsi_unregister_controller - Unregister an HSI controller |
| 134 | * @hsi: The HSI controller to register | 144 | * @hsi: The HSI controller to register |
| 135 | */ | 145 | */ |
diff --git a/include/linux/hsi/hsi.h b/include/linux/hsi/hsi.h index 39bfd5b89077..5a9f1210ed22 100644 --- a/include/linux/hsi/hsi.h +++ b/include/linux/hsi/hsi.h | |||
| @@ -282,6 +282,7 @@ struct hsi_controller *hsi_alloc_controller(unsigned int n_ports, gfp_t flags); | |||
| 282 | void hsi_put_controller(struct hsi_controller *hsi); | 282 | void hsi_put_controller(struct hsi_controller *hsi); |
| 283 | int hsi_register_controller(struct hsi_controller *hsi); | 283 | int hsi_register_controller(struct hsi_controller *hsi); |
| 284 | void hsi_unregister_controller(struct hsi_controller *hsi); | 284 | void hsi_unregister_controller(struct hsi_controller *hsi); |
| 285 | void hsi_port_unregister_clients(struct hsi_port *port); | ||
| 285 | 286 | ||
| 286 | static inline void hsi_controller_set_drvdata(struct hsi_controller *hsi, | 287 | static inline void hsi_controller_set_drvdata(struct hsi_controller *hsi, |
| 287 | void *data) | 288 | void *data) |
