779e6e1c72
List of major changes: - split qdio driver into several files - seperation of thin interrupt code - improved handling for multiple thin interrupt devices - inbound and outbound processing now always runs in tasklet context - significant less tasklet schedules per interrupt needed - merged qebsm with non-qebsm handling - cleanup qdio interface and added kerneldoc - coding style Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: Utz Bacher <utz.bacher@de.ibm.com> Reviewed-by: Ursula Braun <braunu@de.ibm.com> Signed-off-by: Jan Glauber <jang@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
14 lines
464 B
Makefile
14 lines
464 B
Makefile
#
|
|
# Makefile for the S/390 common i/o drivers
|
|
#
|
|
|
|
obj-y += airq.o blacklist.o chsc.o cio.o css.o chp.o idset.o isc.o scsw.o \
|
|
fcx.o itcw.o
|
|
ccw_device-objs += device.o device_fsm.o device_ops.o
|
|
ccw_device-objs += device_id.o device_pgid.o device_status.o
|
|
obj-y += ccw_device.o cmf.o
|
|
obj-$(CONFIG_CHSC_SCH) += chsc_sch.o
|
|
obj-$(CONFIG_CCWGROUP) += ccwgroup.o
|
|
|
|
qdio-objs := qdio_main.o qdio_thinint.o qdio_debug.o qdio_perf.o qdio_setup.o
|
|
obj-$(CONFIG_QDIO) += qdio.o
|