Commit cb3c38c9 authored by Wolfram Sang's avatar Wolfram Sang Committed by Mauro Carvalho Chehab
Browse files

media: usb: cx231xx: convert to use i2c_new_client_device()



Move away from the deprecated API and make use of the fact that
unregistering devices is NULL- and ERR_PTR-safe.

Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 03c87596
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ int cx231xx_ir_init(struct cx231xx *dev)
	ir_i2c_bus = cx231xx_boards[dev->model].ir_i2c_master;
	dev_dbg(dev->dev, "Trying to bind ir at bus %d, addr 0x%02x\n",
		ir_i2c_bus, info.addr);
	dev->ir_i2c_client = i2c_new_device(
	dev->ir_i2c_client = i2c_new_client_device(
		cx231xx_get_i2c_adap(dev, ir_i2c_bus), &info);

	return 0;
@@ -96,7 +96,6 @@ int cx231xx_ir_init(struct cx231xx *dev)

void cx231xx_ir_exit(struct cx231xx *dev)
{
	if (dev->ir_i2c_client)
	i2c_unregister_device(dev->ir_i2c_client);
	dev->ir_i2c_client = NULL;
}