diff options
author | Tracey Dent <tdent48227@gmail.com> | 2010-11-21 15:03:14 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-22 08:16:09 -0800 |
commit | bac14e017830bd204b3a1bd55f42b0841c02e995 (patch) | |
tree | 151cd6db359b9ff716c87a2c6019fb608dca6e6b /net/can | |
parent | a3106d032fb17283c96fa041f8285e6926ae074d (diff) | |
download | linux-3.10-bac14e017830bd204b3a1bd55f42b0841c02e995.tar.gz linux-3.10-bac14e017830bd204b3a1bd55f42b0841c02e995.tar.bz2 linux-3.10-bac14e017830bd204b3a1bd55f42b0841c02e995.zip |
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>
Diffstat (limited to 'net/can')
-rw-r--r-- | net/can/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/can/Makefile b/net/can/Makefile index 9cd3c4b3abd..2d3894b3274 100644 --- a/net/can/Makefile +++ b/net/can/Makefile @@ -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 |