mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 01:53:29 +02:00
This driver is old and almost certainly entirely unused. The two other
parallel port Ethernet drivers (de600/de620) were removed by Paul
Gortmaker in commit 168e06ae26 ("drivers/net: delete old parallel
port de600/de620 drivers"), but this driver remained. Drop it - Paul's
reasoning applies here as well. To quote him:
"The parallel port is largely replaced by USB [...] Let us not pretend
that anyone cares about these drivers anymore, or worse - pretend that
anyone is using them on a modern kernel."
Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
Acked-by: Daniel Palmer <daniel@thingy.jp>
Link: https://patch.msgid.link/20260121084532.60606-1-enelsonmoore@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
12 lines
328 B
Makefile
12 lines
328 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the Realtek network device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_8139CP) += 8139cp.o
|
|
obj-$(CONFIG_8139TOO) += 8139too.o
|
|
r8169-y += r8169_main.o r8169_firmware.o r8169_phy_config.o
|
|
r8169-$(CONFIG_R8169_LEDS) += r8169_leds.o
|
|
obj-$(CONFIG_R8169) += r8169.o
|
|
obj-$(CONFIG_RTASE) += rtase/
|