diff options
author | Loren Huang <b02279@freescale.com> | 2012-03-28 17:56:48 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-07-20 13:24:41 +0800 |
commit | 1b68b2205445a3954f6ef487b88440d2da8b1b5e (patch) | |
tree | 8dffc6171e13a07a48ac70adeda387ad0d2e6df7 /drivers/mxc/gpu-viv/hal/os | |
parent | 6aaf2a69e13ae84980a90cebce70a86c2a09f404 (diff) |
ENGR00177264 Merge vivante 4.6.6p2 kernel part code
Merge vivante 4.6.6p2 kernel part code
Signed-off-by: Loren Huang <b02279@freescale.com>
Acked-by: Lily Zhang
Diffstat (limited to 'drivers/mxc/gpu-viv/hal/os')
-rw-r--r-- | drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_device.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_device.c b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_device.c index ae6062d7a859..efdaef8931d9 100644 --- a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_device.c +++ b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_device.c @@ -140,7 +140,7 @@ static int threadRoutine(void *ctxt) static int down; down = down_interruptible(&device->semas[gcvCORE_MAJOR]); - if (down); /*To make gcc4.6 happy*/ + if (down); /* To make gcc4.6 happy */ device->dataReadys[gcvCORE_MAJOR] = gcvFALSE; if (device->killThread == gcvTRUE) @@ -193,7 +193,7 @@ static int threadRoutine2D(void *ctxt) static int down; down = down_interruptible(&device->semas[gcvCORE_2D]); - if (down); /*To make gcc4.6 happy*/ + if (down); /* To make gcc4.6 happy */ device->dataReadys[gcvCORE_2D] = gcvFALSE; if (device->killThread == gcvTRUE) @@ -244,7 +244,7 @@ static int threadRoutineVG(void *ctxt) static int down; down = down_interruptible(&device->semas[gcvCORE_VG]); - if (down); /*To make gcc4.6 happy*/ + if (down); /* To make gcc4.6 happy */ device->dataReadys[gcvCORE_VG] = gcvFALSE; if (device->killThread == gcvTRUE) |