This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: usb: go7007: s2250-board: convert to i2c_new_dummy_device
Author:  Wolfram Sang <wsa+rene...@sang-engineering.com>
Date:    Mon Jul 22 14:26:02 2019 -0300

Move from i2c_new_dummy() to i2c_new_dummy_device(), so we now get an
ERRPTR which we use in error handling.

Signed-off-by: Wolfram Sang <wsa+rene...@sang-engineering.com>
Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+sams...@kernel.org>

 drivers/media/usb/go7007/s2250-board.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

---

diff --git a/drivers/media/usb/go7007/s2250-board.c 
b/drivers/media/usb/go7007/s2250-board.c
index 179d4d642dae..49e75a1a1f3f 100644
--- a/drivers/media/usb/go7007/s2250-board.c
+++ b/drivers/media/usb/go7007/s2250-board.c
@@ -505,9 +505,9 @@ static int s2250_probe(struct i2c_client *client,
        struct go7007 *go = i2c_get_adapdata(adapter);
        struct go7007_usb *usb = go->hpi_context;
 
-       audio = i2c_new_dummy(adapter, TLV320_ADDRESS >> 1);
-       if (audio == NULL)
-               return -ENOMEM;
+       audio = i2c_new_dummy_device(adapter, TLV320_ADDRESS >> 1);
+       if (IS_ERR(audio))
+               return PTR_ERR(audio);
 
        state = kzalloc(sizeof(struct s2250), GFP_KERNEL);
        if (state == NULL) {

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to