summaryrefslogtreecommitdiff
path: root/drivers/staging/most/core.h
diff options
context:
space:
mode:
authorChristian Gromm <christian.gromm@microchip.com>2017-11-21 15:05:01 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-11-27 09:20:35 +0100
commited021a0f8e5b1ac2966a997e908c6a7824da6baa (patch)
treeb07c56423be716caf3d7b6448ce5e8955c2d5284 /drivers/staging/most/core.h
parenta12844410c4350305b9ae1c1e0c5d6bd87297e6b (diff)
staging: most: rename functions to register a driver with most_core
This patch renames the functions to register and deregister a component module with the core. It is needed because the modules that interface the userspace are referred to as components. Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most/core.h')
-rw-r--r--drivers/staging/most/core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/most/core.h b/drivers/staging/most/core.h
index 4b6e47e78ccf..5a3a5c5c3347 100644
--- a/drivers/staging/most/core.h
+++ b/drivers/staging/most/core.h
@@ -308,8 +308,8 @@ void most_stop_enqueue(struct most_interface *iface, int channel_idx);
* in wait fifo.
*/
void most_resume_enqueue(struct most_interface *iface, int channel_idx);
-int most_register_aim(struct core_component *comp);
-int most_deregister_aim(struct core_component *comp);
+int most_register_component(struct core_component *comp);
+int most_deregister_component(struct core_component *comp);
struct mbo *most_get_mbo(struct most_interface *iface, int channel_idx,
struct core_component *comp);
void most_put_mbo(struct mbo *mbo);