Instead of displaying this:
        [   61.869415] smscore_load_firmware_family2: rc=0, postload=0x         
 (null)

Display, instead:
        [ 1348.441160] smscore_load_firmware_family2: rc=0

Signed-off-by: Mauro Carvalho Chehab <[email protected]>
---
 drivers/media/common/siano/smscoreapi.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/drivers/media/common/siano/smscoreapi.c 
b/drivers/media/common/siano/smscoreapi.c
index 250fe37..d5883bb 100644
--- a/drivers/media/common/siano/smscoreapi.c
+++ b/drivers/media/common/siano/smscoreapi.c
@@ -977,13 +977,16 @@ static int smscore_load_firmware_family2(struct 
smscore_device_t *coredev,
        msleep(400);
 
 exit_fw_download:
-       sms_debug("rc=%d, postload=0x%p ", rc, coredev->postload_handler);
-
        kfree(msg);
 
-       return ((rc >= 0) && coredev->postload_handler) ?
-               coredev->postload_handler(coredev->context) :
-               rc;
+       if (coredev->postload_handler) {
+               sms_debug("rc=%d, postload=0x%p", rc, 
coredev->postload_handler);
+               if (rc >= 0)
+                       return coredev->postload_handler(coredev->context);
+       }
+
+       sms_debug("rc=%d", rc);
+       return rc;
 }
 
 
-- 
1.8.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to