diff options
author | Tracey Dent <tdent48227@gmail.com> | 2010-10-08 00:01:52 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-08 14:23:41 (GMT) |
commit | 43dd1d83cd7dc46b5191c9a54f6f9f1673882933 (patch) | |
tree | d27ae87c440b91491e6f94a0d029b0598ee1297b | |
parent | ea195d1a7fb98581352883a58085f7b501fd5a31 (diff) | |
download | linux-fsl-qoriq-43dd1d83cd7dc46b5191c9a54f6f9f1673882933.tar.xz |
Staging: xgifb: Makefile: replace the use of <module>-objs with <module>-y
Changed <module>-objs to <module>-y in Makefile.
Signed-off-by: Tracey Dent <tdent48227@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/xgifb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/xgifb/Makefile b/drivers/staging/xgifb/Makefile index 2a31770..f2ca6b1 100644 --- a/drivers/staging/xgifb/Makefile +++ b/drivers/staging/xgifb/Makefile @@ -1,4 +1,4 @@ obj-$(CONFIG_FB_XGI) += xgifb.o -xgifb-objs := XGI_main_26.o XGI_accel.o vb_init.o vb_setmode.o vb_util.o vb_ext.o +xgifb-y := XGI_main_26.o XGI_accel.o vb_init.o vb_setmode.o vb_util.o vb_ext.o |