powerpc/pseries/bsr: Remove redundant initialization of bsr dev_t declaration.
authorRobert P. J. Day <rpjday@crashcourse.ca>
Thu, 21 Apr 2011 10:00:18 +0000 (10:00 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 4 May 2011 06:02:40 +0000 (16:02 +1000)
Remove the unnecessary initialization of "dev_t bsr_dev" since it's
subsequently used in an "alloc_chrdev_region()" call which uses that
variable in an output-only fashion.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
drivers/char/bsr.c

index a4a6c2f..cf39bc0 100644 (file)
@@ -295,7 +295,7 @@ static int bsr_create_devs(struct device_node *bn)
 static int __init bsr_init(void)
 {
        struct device_node *np;
-       dev_t bsr_dev = MKDEV(bsr_major, 0);
+       dev_t bsr_dev;
        int ret = -ENODEV;
        int result;