mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
Net: can: Makefile: Remove deprecated kbuild goal definitions
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>
This commit is contained in:
parent
a3106d032f
commit
bac14e0178
1 changed files with 3 additions and 3 deletions
|
@ -3,10 +3,10 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-$(CONFIG_CAN) += can.o
|
obj-$(CONFIG_CAN) += can.o
|
||||||
can-objs := af_can.o proc.o
|
can-y := af_can.o proc.o
|
||||||
|
|
||||||
obj-$(CONFIG_CAN_RAW) += can-raw.o
|
obj-$(CONFIG_CAN_RAW) += can-raw.o
|
||||||
can-raw-objs := raw.o
|
can-raw-y := raw.o
|
||||||
|
|
||||||
obj-$(CONFIG_CAN_BCM) += can-bcm.o
|
obj-$(CONFIG_CAN_BCM) += can-bcm.o
|
||||||
can-bcm-objs := bcm.o
|
can-bcm-y := bcm.o
|
||||||
|
|
Loading…
Reference in a new issue