From: Alan Cox <a...@linux.intel.com>

We want to check the contents not the array itself versus NULL

Signed-off-by: Alan Cox <a...@linux.intel.com>
---

 drivers/media/v4l2-core/v4l2-common.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/v4l2-core/v4l2-common.c 
b/drivers/media/v4l2-core/v4l2-common.c
index 105f88c..415874f 100644
--- a/drivers/media/v4l2-core/v4l2-common.c
+++ b/drivers/media/v4l2-core/v4l2-common.c
@@ -443,7 +443,7 @@ struct v4l2_subdev *v4l2_spi_new_subdev(struct v4l2_device 
*v4l2_dev,
 
        BUG_ON(!v4l2_dev);
 
-       if (info->modalias)
+       if (info->modalias[0])
                request_module(info->modalias);
 
        spi = spi_new_device(master, info);

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

Reply via email to