mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 01:54:09 +08:00
797047f875
Implement accessors for KS8851-16MLL/MLLI/MLLU parallel bus variant of the KS8851. This is based off the ks8851_mll.c , which is a driver for exactly the same hardware, however the ks8851.c code is much higher quality. Hence, this patch pulls out the relevant information from the ks8851_mll.c on how to access the bus, but uses the common ks8851.c code. To make this patch reviewable, instead of rewriting ks8851_mll.c, ks8851_mll.c is removed in a separate subsequent patch. Signed-off-by: Marek Vasut <marex@denx.de> Cc: David S. Miller <davem@davemloft.net> Cc: Lukas Wunner <lukas@wunner.de> Cc: Petr Stetiar <ynezz@true.cz> Cc: YueHaibing <yuehaibing@huawei.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
326 B
Makefile
12 lines
326 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Micrel network device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_KS8842) += ks8842.o
|
|
obj-$(CONFIG_KS8851) += ks8851.o
|
|
ks8851-objs = ks8851_common.o ks8851_spi.o
|
|
obj-$(CONFIG_KS8851_MLL) += ks8851_mll.o
|
|
ks8851_mll-objs = ks8851_common.o ks8851_par.o
|
|
obj-$(CONFIG_KSZ884X_PCI) += ksz884x.o
|