diff options
author | Tracey Dent <tdent48227@gmail.com> | 2011-01-19 08:25:02 -0700 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-01-19 08:25:02 -0700 |
commit | a0700bdd0b0150ea445159b1dee587f1507c272f (patch) | |
tree | 5e2a5162561a26074eb995e80172b62d13f41fff /drivers/block | |
parent | ee71a968672a9951aee6014c55511007596425bc (diff) | |
download | linux-a0700bdd0b0150ea445159b1dee587f1507c272f.tar.bz2 |
drivers/block/aoe/Makefile: replace the use of <module>-objs with <module>-y
Change Makefile to use <modules>-y instead of <modules>-objs because -objs
is deprecated and should now be switched. According to
(documentation/kbuild/makefiles.txt).
Signed-off-by: Tracey Dent <tdent48227@gmail.com>
Cc: "Ed L. Cashin" <ecashin@coraid.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/aoe/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/aoe/Makefile b/drivers/block/aoe/Makefile index e76d997183c6..06ea82cdf27d 100644 --- a/drivers/block/aoe/Makefile +++ b/drivers/block/aoe/Makefile @@ -3,4 +3,4 @@ # obj-$(CONFIG_ATA_OVER_ETH) += aoe.o -aoe-objs := aoeblk.o aoechr.o aoecmd.o aoedev.o aoemain.o aoenet.o +aoe-y := aoeblk.o aoechr.o aoecmd.o aoedev.o aoemain.o aoenet.o |