The BITBLT_START_REG is not necessary to run the job
manager
Change-Id: I538a9725107123c504612912d29f5a9664cbe291
Signed-off-by: hyesoo.yu <hyesoo.yu@samsung.com>
* Number of commands should be multiple of 8.
* If it is not, then pad dummy commands with no side effect.
*/
- n = (8 - ((task->cmd_count + 1) & 7)) & 7;
+ n = (8 - (task->cmd_count & 7)) & 7;
while (n-- > 0) {
regs[task->cmd_count].offset = G2D_LAYER_UPDATE_REG;
regs[task->cmd_count].value = regs[TASK_REG_LAYER_UPDATE].value;
task->cmd_count++;
}
-
- regs[task->cmd_count].offset = G2D_BITBLT_START_REG;
- regs[task->cmd_count].value = 1;
- task->cmd_count++;
}
#endif