Skip to content

Commit

Permalink
Net: can: Makefile: Remove deprecated kbuild goal definitions
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Tdent48227 authored and davem330 committed Nov 22, 2010
1 parent a3106d0 commit bac14e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions net/can/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
#

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
can-raw-objs := raw.o
can-raw-y := raw.o

obj-$(CONFIG_CAN_BCM) += can-bcm.o
can-bcm-objs := bcm.o
can-bcm-y := bcm.o

0 comments on commit bac14e0

Please sign in to comment.