diff options
author | Maciej W. Rozycki <macro@orcam.me.uk> | 2023-01-08 22:56:50 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-01-20 13:12:00 +0100 |
commit | 1c4b7d967e8a18c18ef8ef6354395d4f96a10f0e (patch) | |
tree | bce8a15a51df29facb8a97d2776d1bc9a8bcb852 /drivers/parport | |
parent | drivers: bus: simple-pm-bus: Use clocks (diff) | |
download | linux-1c4b7d967e8a18c18ef8ef6354395d4f96a10f0e.tar.xz linux-1c4b7d967e8a18c18ef8ef6354395d4f96a10f0e.zip |
parport_pc: Remove stale `parport_pc_ecp_read_block_pio' reference
Complement commit 991214386dee ("parport: remove unused dead code from
lowlevel drivers") and remove a stale piece of commented-out code that
refers to a function removed with said commit.
Signed-off-by: Maciej W. Rozycki <macro@orcam.me.uk>
Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Link: https://lore.kernel.org/r/20230108215656.6433-1-sudipm.mukherjee@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/parport')
-rw-r--r-- | drivers/parport/parport_pc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/parport/parport_pc.c b/drivers/parport/parport_pc.c index 5784dc20fb38..de7afbea96cd 100644 --- a/drivers/parport/parport_pc.c +++ b/drivers/parport/parport_pc.c @@ -2119,8 +2119,6 @@ struct parport *parport_pc_probe_port(unsigned long int base, p->ops->compat_write_data = parport_pc_compat_write_block_pio; #ifdef CONFIG_PARPORT_1284 p->ops->ecp_write_data = parport_pc_ecp_write_block_pio; - /* currently broken, but working on it.. (FB) */ - /* p->ops->ecp_read_data = parport_pc_ecp_read_block_pio; */ #endif /* IEEE 1284 support */ if (p->dma != PARPORT_DMA_NONE) { pr_cont(", dma %d", p->dma); |