mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
fec2432c9a
The open/reset/close commands format is similar for all objects. Currently there are multiple implementations for these commands scattered through various drivers. The code is cavsi-identical. Create a generic implementation for the open/reset/close commands. One of the consumer will be the VFIO driver which needs to be able to reset a device. Signed-off-by: Diana Craciun <diana.craciun@oss.nxp.com> Reviewed-by: Laurentiu Tudor <laurentiu.tudor@nxp.com> Link: https://lore.kernel.org/r/20210922110530.24736-1-diana.craciun@oss.nxp.com Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
22 lines
498 B
Makefile
22 lines
498 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Freescale Management Complex (MC) bus drivers
|
|
#
|
|
# Copyright (C) 2014 Freescale Semiconductor, Inc.
|
|
#
|
|
obj-$(CONFIG_FSL_MC_BUS) += mc-bus-driver.o
|
|
|
|
mc-bus-driver-objs := fsl-mc-bus.o \
|
|
mc-sys.o \
|
|
mc-io.o \
|
|
dpbp.o \
|
|
dpcon.o \
|
|
dprc.o \
|
|
dprc-driver.o \
|
|
fsl-mc-allocator.o \
|
|
fsl-mc-msi.o \
|
|
dpmcp.o \
|
|
obj-api.o
|
|
|
|
# MC userspace support
|
|
obj-$(CONFIG_FSL_MC_UAPI_SUPPORT) += fsl-mc-uapi.o
|