]> git.karo-electronics.de Git - linux-beck.git/commit
ppdev: check before attaching port
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>
Sat, 12 Nov 2016 21:22:12 +0000 (21:22 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Nov 2016 19:25:34 +0000 (20:25 +0100)
commitdd5c472a60e43549d789a17a8444513eec64bd7e
tree0c4e511c74fdded742c37f07246d460fc6828446
parent826a4c6574efafdcfc292cdaf4dd2ccd6133d5f0
ppdev: check before attaching port

After parport starts using the device model, all pardevice drivers
should decide in their match_port callback function if they want to
attach with that particulatr port. ppdev has been converted to use the
new parport device-model code but pp_attach() tried to attach with all
the ports.
Create a new array of pointer and use that to remember the ports we
have attached. And use that information to skip attaching ports which
we have already attached.

Tested-by: Joe Lawrence <joe.lawrence@redhat.com>
Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/char/ppdev.c