staging: most: rename functions to register a driver with most_core
authorChristian Gromm <christian.gromm@microchip.com>
Tue, 21 Nov 2017 14:05:01 +0000 (15:05 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Nov 2017 08:20:35 +0000 (09:20 +0100)
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>
drivers/staging/most/cdev/cdev.c
drivers/staging/most/core.c
drivers/staging/most/core.h
drivers/staging/most/net/net.c
drivers/staging/most/sound/sound.c
drivers/staging/most/video/video.c

index a45a4dcbeb9b5d53a3e112952904c432980fcd05..2447fbfd201e5c3bf64083928263e180a877585f 100644 (file)
@@ -518,7 +518,7 @@ static int __init mod_init(void)
                err = PTR_ERR(aim_class);
                goto free_cdev;
        }
-       err = most_register_aim(&cdev_aim);
+       err = most_register_component(&cdev_aim);
        if (err)
                goto dest_class;
        return 0;
@@ -538,7 +538,7 @@ static void __exit mod_exit(void)
 
        pr_info("exit module\n");
 
-       most_deregister_aim(&cdev_aim);
+       most_deregister_component(&cdev_aim);
 
        list_for_each_entry_safe(c, tmp, &channel_list, list) {
                destroy_cdev(c);
index 520b851c5bf8c878a0ed2c2fa3757fb9a7e4d2b0..dd6cebf88e592d2ac9f9edc2a1677ef53c3e7a4b 100644 (file)
@@ -69,6 +69,7 @@ struct most_channel {
        struct list_head trash_fifo;
        struct task_struct *hdm_enqueue_task;
        wait_queue_head_t hdm_fifo_wq;
+
 };
 
 #define to_channel(d) container_of(d, struct most_channel, dev)
@@ -1299,10 +1300,10 @@ out:
 EXPORT_SYMBOL_GPL(most_stop_channel);
 
 /**
- * most_register_aim - registers an AIM (driver) with the core
+ * most_register_component - registers an AIM (driver) with the core
  * @aim: instance of AIM to be registered
  */
-int most_register_aim(struct core_component *aim)
+int most_register_component(struct core_component *aim)
 {
        if (!aim) {
                pr_err("Bad driver\n");
@@ -1312,7 +1313,7 @@ int most_register_aim(struct core_component *aim)
        pr_info("registered new application interfacing module %s\n", aim->name);
        return 0;
 }
-EXPORT_SYMBOL_GPL(most_register_aim);
+EXPORT_SYMBOL_GPL(most_register_component);
 
 static int disconnect_channels(struct device *dev, void *data)
 {
@@ -1333,10 +1334,10 @@ static int disconnect_channels(struct device *dev, void *data)
 }
 
 /**
- * most_deregister_aim - deregisters an AIM (driver) with the core
+ * most_deregister_component - deregisters an AIM (driver) with the core
  * @aim: AIM to be removed
  */
-int most_deregister_aim(struct core_component *aim)
+int most_deregister_component(struct core_component *aim)
 {
        if (!aim) {
                pr_err("Bad driver\n");
@@ -1348,7 +1349,7 @@ int most_deregister_aim(struct core_component *aim)
        pr_info("deregistering module %s\n", aim->name);
        return 0;
 }
-EXPORT_SYMBOL_GPL(most_deregister_aim);
+EXPORT_SYMBOL_GPL(most_deregister_component);
 
 static void release_interface(struct device *dev)
 {
index 4b6e47e78ccff19122ebf1ba118afda45bfaba67..5a3a5c5c334768235ba9527552a6853f38150865 100644 (file)
@@ -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);
index edc12ad4de610f56085b1a5e7b8d647642be6261..cbe0dda011b483d33576aaa869d6fec6b26a1970 100644 (file)
@@ -506,12 +506,12 @@ static int __init most_net_init(void)
 {
        spin_lock_init(&list_lock);
        mutex_init(&probe_disc_mt);
-       return most_register_aim(&aim);
+       return most_register_component(&aim);
 }
 
 static void __exit most_net_exit(void)
 {
-       most_deregister_aim(&aim);
+       most_deregister_component(&aim);
 }
 
 /**
index e605cbe575110be04b5b32925da166e9ff070a29..a3a46a269f439e07213c5b4ca12f1ee2d89590d0 100644 (file)
@@ -733,7 +733,7 @@ static int __init audio_init(void)
 
        INIT_LIST_HEAD(&dev_list);
 
-       return most_register_aim(&audio_aim);
+       return most_register_component(&audio_aim);
 }
 
 static void __exit audio_exit(void)
@@ -747,7 +747,7 @@ static void __exit audio_exit(void)
                snd_card_free(channel->card);
        }
 
-       most_deregister_aim(&audio_aim);
+       most_deregister_component(&audio_aim);
 }
 
 module_init(audio_init);
index 2b8b3aed1ec2e82aa4bddddb762fec5e82e36669..3a97a2443c0b7b773cc0bb832538598f0886ce94 100644 (file)
@@ -572,7 +572,7 @@ static struct core_component aim_info = {
 static int __init aim_init(void)
 {
        spin_lock_init(&list_lock);
-       return most_register_aim(&aim_info);
+       return most_register_component(&aim_info);
 }
 
 static void __exit aim_exit(void)
@@ -581,7 +581,7 @@ static void __exit aim_exit(void)
 
        /*
         * As the mostcore currently doesn't call disconnect_channel()
-        * for linked channels while we call most_deregister_aim()
+        * for linked channels while we call most_deregister_component()
         * we simulate this call here.
         * This must be fixed in core.
         */
@@ -597,7 +597,7 @@ static void __exit aim_exit(void)
        }
        spin_unlock_irq(&list_lock);
 
-       most_deregister_aim(&aim_info);
+       most_deregister_component(&aim_info);
        BUG_ON(!list_empty(&video_devices));
 }