diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2011-04-21 06:00:18 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-05-04 02:02:40 -0400 |
commit | cce36444173b943f7b27e726ab38b3340cdebc41 (patch) | |
tree | ab48a588fbe884863e99ff5e5c1dffed59ae35af /drivers/char | |
parent | ecb7390211fe9cb14ff0bae116a3f4f1149c0b6c (diff) |
powerpc/pseries/bsr: Remove redundant initialization of bsr dev_t declaration.
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>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/bsr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/bsr.c b/drivers/char/bsr.c index a4a6c2f044b5..cf39bc08ce08 100644 --- a/drivers/char/bsr.c +++ b/drivers/char/bsr.c | |||
@@ -295,7 +295,7 @@ static int bsr_create_devs(struct device_node *bn) | |||
295 | static int __init bsr_init(void) | 295 | static int __init bsr_init(void) |
296 | { | 296 | { |
297 | struct device_node *np; | 297 | struct device_node *np; |
298 | dev_t bsr_dev = MKDEV(bsr_major, 0); | 298 | dev_t bsr_dev; |
299 | int ret = -ENODEV; | 299 | int ret = -ENODEV; |
300 | int result; | 300 | int result; |
301 | 301 | ||