David Yu Chen wrote: > Hi All, [snip] > --------------------------------------------------------- > > [FILE: 2.6.0-test5/drivers/media/video/bttv-risc.c] > [FUNC: bttv_risc_overlay] > [LINES: 214-223] > [VAR: skips] > 209: struct btcx_skiplist *skips; > 210: u32 *rp,ri,ra; > 211: u32 addr; > 212: > 213: /* skip list for window clipping */ > START --> > 214: if (NULL == (skips = kmalloc(sizeof(*skips) * ov->nclips,GFP_KERNEL))) > 215: return -ENOMEM; > 216: > 217: /* estimate risc mem: worst case is (clip+1) * lines instructions > 218: + sync + jump (all 2 dwords) */ > 219: instructions = (ov->nclips + 1) * > 220: ((skip_even || skip_odd) ? ov->w.height>>1 : ov->w.height); > 221: instructions += 2; > 222: if ((rc = btcx_riscmem_alloc(btv->dev,risc,instructions*8)) < 0) > END --> > 223: return rc; > 224: > 225: /* sync instruction */ > 226: rp = risc->cpu; > 227: *(rp++) = cpu_to_le32(BT848_RISC_SYNC|BT848_FIFO_STATUS_FM1); > 228: *(rp++) = cpu_to_le32(0); > --------------------------------------------------------- > Correct?