amd-gpu: rename module again to mxc_kgsl and remove extra cflags

This means we can unify the kgsl_kmod, kgsl_device, etc. as kgsl.o
just like Qualcomm does without stepping on the module object.
This commit is contained in:
Matt Sealey
2012-11-29 05:56:50 -08:00
parent 5974e44045
commit 692028e921

View File

@@ -1,9 +1,5 @@
EXTRA_CFLAGS := \
-I$(obj)/include \
-I$(obj)/include/api
obj-$(CONFIG_MXC_KGSL) += kgsl.o
kgsl-objs += kgsl_cmdstream.o \
obj-$(CONFIG_MXC_KGSL) += mxc_kgsl.o
mxc_kgsl-objs += kgsl_cmdstream.o \
kgsl_cmdwindow.o \
kgsl_context.o \
kgsl_device.o \
@@ -23,5 +19,5 @@ kgsl-objs += kgsl_cmdstream.o \
kgsl_pwrctrl.o
ifdef CONFIG_KGSL_LOGGING
kgsl-objs += kgsl_log.o
mxc_kgsl-objs += kgsl_log.o
endif