mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
parport: Remove attach function pointer
The attach function pointers haven't actually been called since:
'commit 3275158fa5
("parport: remove use of devmodel")'
topped adding entries to the drivers list.
If you're converting a driver, look at the 'match_port' function
pointer instead.
(There are lots of comment references to 'attach' all over, but they
probably need some deeper understanding to check the semantics
to see if they can be replaced by match_port).
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Acked-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Link: https://lore.kernel.org/r/20240502154823.67235-3-linux@treblig.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f9a748fa5c
commit
ed06e05490
@ -252,7 +252,6 @@ struct parport {
|
||||
|
||||
struct parport_driver {
|
||||
const char *name;
|
||||
void (*attach) (struct parport *);
|
||||
void (*detach) (struct parport *);
|
||||
void (*match_port)(struct parport *);
|
||||
int (*probe)(struct pardevice *);
|
||||
|
Loading…
Reference in New Issue
Block a user