forked from Minki/linux
7aa55fcec2
This patch contains the following cleanups: - make needlessly global code static - remove the completely unused smtparse.c - remove the following unused global functions: - drvfbi.c: init_dma - drvfbi.c: dis_dma - drvfbi.c: get_rom_byte - drvfbi.c: mac_drv_vpd_read - drvfbi.c: mac_drv_pci_fix - fplustm.c: mac_set_func_addr - fplustm.c: mac_del_multicast - hwmtm.c: mac_drv_rx_frag - pcmplc.c: pcm_set_lct_short - smt.c: smt_please_reconnect - smt.c: smt_change_t_neg - smtdef.c: smt_set_defaults Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org>
21 lines
809 B
Makefile
21 lines
809 B
Makefile
#
|
|
# Makefile for the SysKonnect FDDI PCI adapter driver
|
|
#
|
|
|
|
obj-$(CONFIG_SKFP) += skfp.o
|
|
|
|
skfp-objs := skfddi.o hwmtm.o fplustm.o smt.o cfm.o \
|
|
ecm.o pcmplc.o pmf.o queue.o rmt.o \
|
|
smtdef.o smtinit.o smttimer.o srf.o hwt.o \
|
|
drvfbi.o ess.o
|
|
|
|
# NOTE:
|
|
# Compiling this driver produces some warnings (and some more are
|
|
# switched off below), but I did not fix this, because the Hardware
|
|
# Module source (see skfddi.c for details) is used for different
|
|
# drivers, and fixing it for Linux might bring problems on other
|
|
# projects. To keep the source common for all those drivers (and
|
|
# thus simplify fixes to it), please do not clean it up!
|
|
|
|
EXTRA_CFLAGS += -Idrivers/net/skfp -DPCI -DMEM_MAPPED_IO -Wno-strict-prototypes
|