Lines Matching defs:reply

97 		err("generic read/write, wrong reply code.");
102 err("generic read/write, wrong length in reply.");
107 err("generic read/write, wrong sequence in reply.");
115 * sometimes the register in the reply is different that what
119 err("generic read/write wrong status code in reply.");
489 err("send command, wrong reply code.");
492 err("send command, wrong sequence in reply.");
495 err("send command, wrong status code in reply.");
498 err("send command, invalid data length in reply.");
536 err("Read eeprom, invalid reply code");
539 err("Read eeprom, invalid reply length");
542 err("Read eeprom, wrong sequence in reply ");
545 err("Read eeprom, wrong status in reply ");
558 static int af9005_boot_packet(struct usb_device *udev, int type, u8 *reply,
652 *reply = buf[6];
677 *reply = buf[6];
718 u8 reply;
724 ret = af9005_boot_packet(udev, FW_CONFIG, &reply, buf,
728 if (reply != 0x01) {
729 err("before downloading firmware, FW_CONFIG expected 0x01, received 0x%x", reply);
749 ret = af9005_boot_packet(udev, FW_CONFIRM, &reply,
753 if (reply != (u8) (packets & 0xff)) {
754 err("after downloading firmware, FW_CONFIRM expected 0x%x, received 0x%x", packets & 0xff, reply);
758 ret = af9005_boot_packet(udev, FW_BOOT, &reply, buf,
762 ret = af9005_boot_packet(udev, FW_CONFIG, &reply, buf,
766 if (reply != 0x02) {
767 err("after downloading firmware, FW_CONFIG expected 0x02, received 0x%x", reply);
968 u8 reply, *buf;
974 ret = af9005_boot_packet(udev, FW_CONFIG, &reply,
978 deb_info("result of FW_CONFIG in identify state %d\n", reply);
979 if (reply == 0x01)
981 else if (reply == 0x02)