msm: kgsl: Add a constant for adreno_ringbuffer_issuecmds flags

Use a #define constant instead of a bare constant for the flags
parameter of adreno_ringbuffer_issuecmds.
This commit is contained in:
SecureCRT 2012-06-21 00:32:58 +08:00
parent ae32a212a5
commit 97dd7fe6b5

View File

@ -1086,7 +1086,8 @@ static int kgsl_check_interrupt_timestamp(struct kgsl_device *device,
* get an interrupt */
cmds[0] = cp_type3_packet(CP_NOP, 1);
cmds[1] = 0;
adreno_ringbuffer_issuecmds(device, 0, &cmds[0], 2);
adreno_ringbuffer_issuecmds(device, KGSL_CMD_FLAGS_NONE,
&cmds[0], 2);
}
mutex_unlock(&device->mutex);
}