rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | # |
| 3 | # Makefile for the kernel Parallel port device drivers. |
| 4 | # |
| 5 | |
| 6 | parport-objs := share.o ieee1284.o ieee1284_ops.o procfs.o |
| 7 | |
| 8 | ifeq ($(CONFIG_PARPORT_1284),y) |
| 9 | parport-objs += daisy.o probe.o |
| 10 | endif |
| 11 | |
| 12 | obj-$(CONFIG_PARPORT) += parport.o |
| 13 | obj-$(CONFIG_PARPORT_PC) += parport_pc.o |
| 14 | obj-$(CONFIG_PARPORT_SERIAL) += parport_serial.o |
| 15 | obj-$(CONFIG_PARPORT_PC_PCMCIA) += parport_cs.o |
| 16 | obj-$(CONFIG_PARPORT_AMIGA) += parport_amiga.o |
| 17 | obj-$(CONFIG_PARPORT_MFC3) += parport_mfc3.o |
| 18 | obj-$(CONFIG_PARPORT_ATARI) += parport_atari.o |
| 19 | obj-$(CONFIG_PARPORT_SUNBPP) += parport_sunbpp.o |
| 20 | obj-$(CONFIG_PARPORT_GSC) += parport_gsc.o |
| 21 | obj-$(CONFIG_PARPORT_AX88796) += parport_ax88796.o |
| 22 | obj-$(CONFIG_PARPORT_IP32) += parport_ip32.o |