From 692028e9219d7022dce2efd256b0320b6d87f32a Mon Sep 17 00:00:00 2001 From: Matt Sealey Date: Thu, 29 Nov 2012 05:56:50 -0800 Subject: [PATCH] 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. --- drivers/mxc/amd-gpu/Makefile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/drivers/mxc/amd-gpu/Makefile b/drivers/mxc/amd-gpu/Makefile index 388e76b1280..a129ed896b2 100644 --- a/drivers/mxc/amd-gpu/Makefile +++ b/drivers/mxc/amd-gpu/Makefile @@ -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