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

Commit 1792f68b authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (11375): v4l2: use v4l2_i2c_new_probed_subdev_addr where appropriate.

parent e6574f2f
Loading
Loading
Loading
Loading
+6 −14
Original line number Diff line number Diff line
@@ -3640,21 +3640,13 @@ void __devinit bttv_init_card2(struct bttv *btv)
	   it really is a msp3400, so it will return NULL when the device
	   found is really something else (e.g. a tea6300). */
	if (!bttv_tvcards[btv->c.type].no_msp34xx) {
		static const unsigned short addrs[] = {
			I2C_ADDR_MSP3400 >> 1,
			I2C_CLIENT_END
		};

		btv->sd_msp34xx = v4l2_i2c_new_probed_subdev(&btv->c.v4l2_dev,
			&btv->c.i2c_adap, "msp3400", "msp3400", addrs);
		btv->sd_msp34xx = v4l2_i2c_new_probed_subdev_addr(&btv->c.v4l2_dev,
			&btv->c.i2c_adap, "msp3400", "msp3400",
			I2C_ADDR_MSP3400 >> 1);
	} else if (bttv_tvcards[btv->c.type].msp34xx_alt) {
		static const unsigned short addrs[] = {
			I2C_ADDR_MSP3400_ALT >> 1,
			I2C_CLIENT_END
		};

		btv->sd_msp34xx = v4l2_i2c_new_probed_subdev(&btv->c.v4l2_dev,
			&btv->c.i2c_adap, "msp3400", "msp3400", addrs);
		btv->sd_msp34xx = v4l2_i2c_new_probed_subdev_addr(&btv->c.v4l2_dev,
			&btv->c.i2c_adap, "msp3400", "msp3400",
			I2C_ADDR_MSP3400_ALT >> 1);
	}

	/* If we found a msp34xx, then we're done. */
+3 −6
Original line number Diff line number Diff line
@@ -1888,12 +1888,9 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev,
	if (core->board.audio_chip == V4L2_IDENT_TVAUDIO) {
		/* This probes for a tda9874 as is used on some
		   Pixelview Ultra boards. */
		static const unsigned short i2c_addr[] = {
			0xb0 >> 1, I2C_CLIENT_END
		};

		v4l2_i2c_new_probed_subdev(&core->v4l2_dev, &core->i2c_adap,
				"tvaudio", "tvaudio", i2c_addr);
		v4l2_i2c_new_probed_subdev_addr(&core->v4l2_dev,
				&core->i2c_adap,
				"tvaudio", "tvaudio", 0xb0 >> 1);
	}

	switch (core->boardnr) {
+2 −4
Original line number Diff line number Diff line
@@ -181,10 +181,8 @@ int ivtv_i2c_register(struct ivtv *itv, unsigned idx)
	if (!hw_addrs[idx])
		return -1;
	if (hw == IVTV_HW_UPD64031A || hw == IVTV_HW_UPD6408X) {
		unsigned short addrs[2] = { hw_addrs[idx], I2C_CLIENT_END };

		sd = v4l2_i2c_new_probed_subdev(&itv->v4l2_dev,
				adap, mod, type, addrs);
		sd = v4l2_i2c_new_probed_subdev_addr(&itv->v4l2_dev,
				adap, mod, type, hw_addrs[idx]);
	} else {
		sd = v4l2_i2c_new_subdev(&itv->v4l2_dev,
				adap, mod, type, hw_addrs[idx]);
+3 −4
Original line number Diff line number Diff line
@@ -991,12 +991,11 @@ static int __devinit saa7134_initdev(struct pci_dev *pci_dev,
	}

	if (saa7134_boards[dev->board].rds_addr) {
		unsigned short addrs[2] = { 0, I2C_CLIENT_END };
		struct v4l2_subdev *sd;

		addrs[0] = saa7134_boards[dev->board].rds_addr;
		sd = v4l2_i2c_new_probed_subdev(&dev->v4l2_dev, &dev->i2c_adap,
				"saa6588", "saa6588", addrs);
		sd = v4l2_i2c_new_probed_subdev_addr(&dev->v4l2_dev,
				&dev->i2c_adap,	"saa6588", "saa6588",
				saa7134_boards[dev->board].rds_addr);
		if (sd)
			printk(KERN_INFO "%s: found RDS decoder\n", dev->name);
	}
+4 −7
Original line number Diff line number Diff line
@@ -4266,7 +4266,6 @@ static int vino_init_channel_settings(struct vino_channel_settings *vcs,

static int __init vino_module_init(void)
{
	unsigned short addr[] = { 0, I2C_CLIENT_END };
	int ret;

	printk(KERN_INFO "SGI VINO driver version %s\n",
@@ -4336,14 +4335,12 @@ static int __init vino_module_init(void)
	}
	vino_init_stage++;

	addr[0] = 0x45;
	vino_drvdata->decoder =
		v4l2_i2c_new_probed_subdev(&vino_drvdata->v4l2_dev,
			&vino_i2c_adapter, "saa7191", "saa7191", addr);
	addr[0] = 0x2b;
		v4l2_i2c_new_probed_subdev_addr(&vino_drvdata->v4l2_dev,
			&vino_i2c_adapter, "saa7191", "saa7191", 0x45);
	vino_drvdata->camera =
		v4l2_i2c_new_probed_subdev(&vino_drvdata->v4l2_dev,
			&vino_i2c_adapter, "indycam", "indycam", addr);
		v4l2_i2c_new_probed_subdev_addr(&vino_drvdata->v4l2_dev,
			&vino_i2c_adapter, "indycam", "indycam", 0x2b);

	dprintk("init complete!\n");