This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/media_tree.git tree:

Subject: [media] mn88472: check if firmware is already running before loading it
Author:  Benjamin Larsson <[email protected]>
Date:    Sun Mar 15 19:57:54 2015 -0300

Signed-off-by: Benjamin Larsson <[email protected]>
Signed-off-by: Antti Palosaari <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/staging/media/mn88472/mn88472.c |   21 ++++++++++++++++-----
 1 files changed, 16 insertions(+), 5 deletions(-)

---

http://git.linuxtv.org/cgit.cgi/media_tree.git/commit/?id=4752eb273133778816e7affe6c8381712f363c50

diff --git a/drivers/staging/media/mn88472/mn88472.c 
b/drivers/staging/media/mn88472/mn88472.c
index 85ef4f6..bfb3e44 100644
--- a/drivers/staging/media/mn88472/mn88472.c
+++ b/drivers/staging/media/mn88472/mn88472.c
@@ -258,7 +258,7 @@ static int mn88472_init(struct dvb_frontend *fe)
        int ret, len, remaining;
        const struct firmware *fw = NULL;
        u8 *fw_file = MN88472_FIRMWARE;
-       unsigned int csum;
+       unsigned int tmp;
 
        dev_dbg(&client->dev, "\n");
 
@@ -274,6 +274,17 @@ static int mn88472_init(struct dvb_frontend *fe)
        if (ret)
                goto err;
 
+       /* check if firmware is already running */
+       ret = regmap_read(dev->regmap[0], 0xf5, &tmp);
+       if (ret)
+               goto err;
+
+       if (!(tmp & 0x1)) {
+               dev_info(&client->dev, "firmware already running\n");
+               dev->warm = true;
+               return 0;
+       }
+
        /* request the firmware, this will block and timeout */
        ret = request_firmware(&fw, fw_file, &client->dev);
        if (ret) {
@@ -305,18 +316,18 @@ static int mn88472_init(struct dvb_frontend *fe)
        }
 
        /* parity check of firmware */
-       ret = regmap_read(dev->regmap[0], 0xf8, &csum);
+       ret = regmap_read(dev->regmap[0], 0xf8, &tmp);
        if (ret) {
                dev_err(&client->dev,
                                "parity reg read failed=%d\n", ret);
                goto err;
        }
-       if (csum & 0x10) {
+       if (tmp & 0x10) {
                dev_err(&client->dev,
-                               "firmware parity check failed=0x%x\n", csum);
+                               "firmware parity check failed=0x%x\n", tmp);
                goto err;
        }
-       dev_err(&client->dev, "firmware parity check succeeded=0x%x\n", csum);
+       dev_err(&client->dev, "firmware parity check succeeded=0x%x\n", tmp);
 
        ret = regmap_write(dev->regmap[0], 0xf5, 0x00);
        if (ret)

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to