summaryrefslogtreecommitdiffstats
path: root/module/splat/splat-ctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'module/splat/splat-ctl.c')
-rw-r--r--module/splat/splat-ctl.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/module/splat/splat-ctl.c b/module/splat/splat-ctl.c
index 9e52ab4fb..36a690743 100644
--- a/module/splat/splat-ctl.c
+++ b/module/splat/splat-ctl.c
@@ -590,6 +590,7 @@ static loff_t splat_seek(struct file *file, loff_t offset, int origin)
return rc;
}
+static struct cdev splat_cdev;
static struct file_operations splat_fops = {
.owner = THIS_MODULE,
.open = splat_open,
@@ -603,11 +604,6 @@ static struct file_operations splat_fops = {
.llseek = splat_seek,
};
-static struct cdev splat_cdev = {
- .owner = THIS_MODULE,
- .kobj = { .name = SPLAT_NAME, },
-};
-
static int
splat_init(void)
{
@@ -638,6 +634,8 @@ splat_init(void)
/* Support for registering a character driver */
cdev_init(&splat_cdev, &splat_fops);
+ splat_cdev.owner = THIS_MODULE;
+ kobject_set_name(&splat_cdev.kobj, SPLAT_NAME);
if ((rc = cdev_add(&splat_cdev, dev, SPLAT_MINORS))) {
printk(KERN_ERR "SPLAT: Error adding cdev, %d\n", rc);
kobject_put(&splat_cdev.kobj);