diff options
author | Tracey Dent <tdent48227@gmail.com> | 2011-01-19 15:25:02 (GMT) |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-01-19 15:25:02 (GMT) |
commit | 04de96c9c6981c5957aa5db39bbdc4d958d07efa (patch) | |
tree | 0ba0d513b09b874a801d718f95366ffa117cda76 /drivers/block/Makefile | |
parent | 490da40d82b31c0562d3f5edb37810f492ca1c34 (diff) | |
download | linux-04de96c9c6981c5957aa5db39bbdc4d958d07efa.tar.xz |
drivers/block/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>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'drivers/block/Makefile')
-rw-r--r-- | drivers/block/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/Makefile b/drivers/block/Makefile index d7f463d..40528ba 100644 --- a/drivers/block/Makefile +++ b/drivers/block/Makefile @@ -39,4 +39,4 @@ obj-$(CONFIG_XEN_BLKDEV_FRONTEND) += xen-blkfront.o obj-$(CONFIG_BLK_DEV_DRBD) += drbd/ obj-$(CONFIG_BLK_DEV_RBD) += rbd.o -swim_mod-objs := swim.o swim_asm.o +swim_mod-y := swim.o swim_asm.o |