diff options
author | Tracey Dent <tdent48227@gmail.com> | 2011-07-07 14:17:24 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-07-08 14:03:38 -0700 |
commit | 84db550cbdb2859a219dc2653bafe3bbdda11708 (patch) | |
tree | 57f5ce5a0d4c278d34573ccfef5157fc85ed2778 | |
parent | 06c156072b1edf831dcb20d566839f4c0b6c26f2 (diff) | |
download | linux-stable-84db550cbdb2859a219dc2653bafe3bbdda11708.tar.gz linux-stable-84db550cbdb2859a219dc2653bafe3bbdda11708.tar.bz2 linux-stable-84db550cbdb2859a219dc2653bafe3bbdda11708.zip |
Altera-stapl: Clean up makefile (-y instead of -objs)
Changed Makefile to use <modules>-y instead of <modules>-objs
because -objs is deprecated.
Signed-off-by: Tracey Dent <tdent48227@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/altera-stapl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/altera-stapl/Makefile b/drivers/staging/altera-stapl/Makefile index 055f61ee781a..ddeede3c4b96 100644 --- a/drivers/staging/altera-stapl/Makefile +++ b/drivers/staging/altera-stapl/Makefile @@ -1,3 +1,3 @@ -altera-stapl-objs = altera-lpt.o altera-jtag.o altera-comp.o altera.o +altera-stapl-y := altera-lpt.o altera-jtag.o altera-comp.o altera.o obj-$(CONFIG_ALTERA_STAPL) += altera-stapl.o |