]> granicus.if.org Git - zfs/commitdiff
Fix unused variable
authorBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 19 Apr 2011 16:45:36 +0000 (09:45 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 19 Apr 2011 16:45:36 +0000 (09:45 -0700)
Flagged by the default -Wunused-but-set-variable gcc option when
running under Fedora 15.  Since it's correct this variable is
entirely unused this commit removes it.

module/spl/spl-module.c

index 3b5161b6da7a089fde28be5f0231a4bdf9f3a5cd..2c665b5d40fd8accbeaaa7f407e831f5b424ed2f 100644 (file)
@@ -95,7 +95,6 @@ __ddi_create_minor_node(dev_info_t *di, char *name, int spec_type,
                        int flags, struct module *mod)
 {
        struct cdev *cdev;
-       struct dev_ops *dev_ops;
        struct cb_ops *cb_ops;
        struct file_operations *fops;
        int rc;
@@ -118,8 +117,6 @@ __ddi_create_minor_node(dev_info_t *di, char *name, int spec_type,
        cdev->ops = fops;
 
        mutex_enter(&di->di_lock);
-       dev_ops = di->di_ops;
-       ASSERT(dev_ops);
        cb_ops = di->di_ops->devo_cb_ops;
        ASSERT(cb_ops);