Lines Matching defs:tmp
1302 void *tmp;
1304 tmp = kmalloc(size, GFP_KERNEL);
1305 if (!tmp)
1310 value, index, tmp, size, "read");
1315 memcpy(data, tmp, size);
1317 kfree(tmp);
1326 void *tmp;
1328 tmp = kmemdup(data, size, GFP_KERNEL);
1329 if (!tmp)
1334 value, index, tmp, size, "write");
1336 kfree(tmp);
1496 __le32 tmp = __cpu_to_le32(data);
1498 generic_ocp_write(tp, index, BYTE_EN_DWORD, sizeof(tmp), &tmp, type);
1504 __le32 tmp;
1511 generic_ocp_read(tp, index, sizeof(tmp), &tmp, type | byen);
1513 data = __le32_to_cpu(tmp);
1523 __le32 tmp;
1536 tmp = __cpu_to_le32(data);
1538 generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
1544 __le32 tmp;
1549 generic_ocp_read(tp, index, sizeof(tmp), &tmp, type);
1551 data = __le32_to_cpu(tmp);
1561 __le32 tmp;
1574 tmp = __cpu_to_le32(data);
1576 generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type);
2836 __le32 tmp[2];
2873 tmp[0] = __cpu_to_le32(swab32(mc_filter[1]));
2874 tmp[1] = __cpu_to_le32(swab32(mc_filter[0]));
2876 pla_ocp_write(tp, PLA_MAR, BYTE_EN_DWORD, sizeof(tmp), tmp);
3074 * Therefore, move the list of rx_info to a tmp one.
9615 __le32 *tmp;
9620 tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
9621 if (!tmp)
9631 PLA_TCR0, MCU_TYPE_PLA, tmp, sizeof(*tmp),
9634 ocp_data = (__le32_to_cpu(*tmp) >> 16) & VERSION_MASK;
9642 kfree(tmp);