Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Net: irda: ircomm: Makefile: Remove deprecated kbuild goal defintions

Changed Makefile to use <modules>-y instead of <modules>-objs
because -objs is deprecated and not mentioned in
Documentation/kbuild/makefiles.txt.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Tracey Dent and committed by
David S. Miller
f91c4ae4 4de58dfe

+2 -2
+2 -2
net/irda/ircomm/Makefile
··· 4 4 5 5 obj-$(CONFIG_IRCOMM) += ircomm.o ircomm-tty.o 6 6 7 - ircomm-objs := ircomm_core.o ircomm_event.o ircomm_lmp.o ircomm_ttp.o 8 - ircomm-tty-objs := ircomm_tty.o ircomm_tty_attach.o ircomm_tty_ioctl.o ircomm_param.o 7 + ircomm-y := ircomm_core.o ircomm_event.o ircomm_lmp.o ircomm_ttp.o 8 + ircomm-tty-y := ircomm_tty.o ircomm_tty_attach.o ircomm_tty_ioctl.o ircomm_param.o