Commit 1ac3836ce689e594b20c7c9855f64a63751c2d10

Authored by Daniel Drake
Committed by Linus Torvalds
1 parent 13e87ec686

[PATCH] tipar oops fix

If compiled into the kernel, parport_register_driver() is called before the
parport driver has been initalised.

This means that it is expected that tp_count is 0 after the
parport_register_driver() call() - tipar's attach function will not be
called until later during bootup.

Signed-off-by: Daniel Drake <dsd@gentoo.org>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/char/tipar.c
... ... @@ -515,7 +515,7 @@
515 515 err = PTR_ERR(tipar_class);
516 516 goto out_chrdev;
517 517 }
518   - if (parport_register_driver(&tipar_driver) || tp_count == 0) {
  518 + if (parport_register_driver(&tipar_driver)) {
519 519 printk(KERN_ERR "tipar: unable to register with parport\n");
520 520 err = -EIO;
521 521 goto out_class;