Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 51dec1f1 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (5356): Fix bogus error messages in ivtv for VIDIOC_G_CHIP_IDENT

parent 74cab31c
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -567,6 +567,7 @@ int ivtv_call_i2c_client(struct ivtv *itv, int addr, unsigned int cmd, void *arg
			return retval;
		}
	}
	if (cmd != VIDIOC_G_CHIP_IDENT)
		IVTV_ERR("i2c addr 0x%02x not found for command 0x%x!\n", addr, cmd);
	return -ENODEV;
}
@@ -652,6 +653,7 @@ int ivtv_i2c_id(struct ivtv *itv, u32 id, unsigned int cmd, void *arg)

	addr = ivtv_i2c_id_addr(itv, id);
	if (addr < 0) {
		if (cmd != VIDIOC_G_CHIP_IDENT)
			IVTV_ERR("i2c ID 0x%08x (%s) not found for command 0x%x!\n",
				id, ivtv_i2c_id_name(id), cmd);
		return addr;