summaryrefslogtreecommitdiff
path: root/drivers/staging/most/mostcore
diff options
context:
space:
mode:
authorChristian Gromm <christian.gromm@microchip.com>2016-06-27 16:00:33 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-08-15 21:23:21 +0300
commit99d753463a9a504ec6bb73203b3a2b73baf75996 (patch)
tree2b5f207a8a19d1e3274e0b4c6390daaac957e474 /drivers/staging/most/mostcore
parent5a63e23a29cf9a45b9d5a37e20bb157bf48536ae (diff)
downloadlinux-99d753463a9a504ec6bb73203b3a2b73baf75996.tar.xz
staging: most: core: rename device struct of core module
This patch gives the struct device variable of the core a more meaningful name. Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed-off-by: Andrey Shvetsov <andrey.shvetsov@k2l.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most/mostcore')
-rw-r--r--drivers/staging/most/mostcore/core.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/drivers/staging/most/mostcore/core.c b/drivers/staging/most/mostcore/core.c
index cb4c6de82f88..b03cdc99b711 100644
--- a/drivers/staging/most/mostcore/core.c
+++ b/drivers/staging/most/mostcore/core.c
@@ -33,7 +33,7 @@
#define STRING_SIZE 80
static struct class *most_class;
-static struct device *class_glue_dir;
+static struct device *core_dev;
static struct ida mdev_id;
static int dummy_num_buffers;
@@ -1877,22 +1877,19 @@ static int __init most_init(void)
goto exit_class;
}
- class_glue_dir =
- device_create(most_class, NULL, 0, NULL, "mostcore");
- if (IS_ERR(class_glue_dir)) {
- err = PTR_ERR(class_glue_dir);
+ core_dev = device_create(most_class, NULL, 0, NULL, "mostcore");
+ if (IS_ERR(core_dev)) {
+ err = PTR_ERR(core_dev);
goto exit_driver;
}
- most_aim_kset =
- kset_create_and_add("aims", NULL, &class_glue_dir->kobj);
+ most_aim_kset = kset_create_and_add("aims", NULL, &core_dev->kobj);
if (!most_aim_kset) {
err = -ENOMEM;
goto exit_class_container;
}
- most_inst_kset =
- kset_create_and_add("devices", NULL, &class_glue_dir->kobj);
+ most_inst_kset = kset_create_and_add("devices", NULL, &core_dev->kobj);
if (!most_inst_kset) {
err = -ENOMEM;
goto exit_driver_kset;