diff options
author | Dr. David Alan Gilbert <linux@treblig.org> | 2024-05-02 17:48:23 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-07-03 16:44:22 +0200 |
commit | dfd19866d1a3f681cc12aae67ab05011eb3aa3d8 (patch) | |
tree | b652a28b8399ed40764f55c3e8b3834a874b2406 /drivers/auxdisplay/panel.c | |
parent | parport: Remove attach function pointer (diff) | |
download | linux-dfd19866d1a3f681cc12aae67ab05011eb3aa3d8.tar.xz linux-dfd19866d1a3f681cc12aae67ab05011eb3aa3d8.zip |
parport: Remove parport_driver.devmodel
'devmodel' hasn't actually been used since:
'commit 3275158fa52a ("parport: remove use of devmodel")'
and everyone now has it set to true and has been fixed up; remove
the flag.
(There are still comments all over about it)
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-4-linux@treblig.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/auxdisplay/panel.c')
-rw-r--r-- | drivers/auxdisplay/panel.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/auxdisplay/panel.c b/drivers/auxdisplay/panel.c index 049ff443e790..a731f28455b4 100644 --- a/drivers/auxdisplay/panel.c +++ b/drivers/auxdisplay/panel.c @@ -1706,7 +1706,6 @@ static struct parport_driver panel_driver = { .name = "panel", .match_port = panel_attach, .detach = panel_detach, - .devmodel = true, }; module_parport_driver(panel_driver); |