Lines Matching full:reply
28 void *reply, unsigned int reply_len)
43 msgs[1].buf = reply;
60 u8 reply[OMNIA_FW_VERSION_LEN];
67 reply, sizeof(reply));
71 p = bin2hex(version, reply, OMNIA_FW_VERSION_LEN);
128 u8 reply;
132 &reply);
136 return sysfs_emit(buf, "%d\n", reply);
334 u8 reply[1 + OMNIA_BOARD_INFO_LEN];
337 err = omnia_cmd_read(mcu->client, OMNIA_CMD_BOARD_INFO_GET, reply,
338 sizeof(reply));
342 if (reply[0] != OMNIA_BOARD_INFO_LEN)
345 mcu->board_serial_number = get_unaligned_le64(&reply[1]);
347 /* we can't use ether_addr_copy() because reply is not u16-aligned */
348 memcpy(mcu->board_first_mac, &reply[9], sizeof(mcu->board_first_mac));
350 mcu->board_revision = reply[15];