Lines Matching refs:opblk
509 u32 opblk[] = { cpu_to_le32(0x00000001), in i2o_parm_field_get() local
520 rc = i2o_parm_issue(i2o_dev, I2O_CMD_UTIL_PARAMS_GET, opblk, in i2o_parm_field_get()
521 sizeof(opblk), resblk, buflen + 8); in i2o_parm_field_get()
550 u16 *opblk; in i2o_parm_table_get() local
557 opblk = kmalloc(size, GFP_KERNEL); in i2o_parm_table_get()
558 if (opblk == NULL) { in i2o_parm_table_get()
563 opblk[0] = 1; /* operation count */ in i2o_parm_table_get()
564 opblk[1] = 0; /* pad */ in i2o_parm_table_get()
565 opblk[2] = oper; in i2o_parm_table_get()
566 opblk[3] = group; in i2o_parm_table_get()
567 opblk[4] = fieldcount; in i2o_parm_table_get()
568 memcpy(opblk + 5, ibuf, ibuflen); /* other params */ in i2o_parm_table_get()
570 size = i2o_parm_issue(dev, I2O_CMD_UTIL_PARAMS_GET, opblk, in i2o_parm_table_get()
573 kfree(opblk); in i2o_parm_table_get()