On 1 May 2013 15:02, Sylwester Nawrocki <sylvester.nawrocki@xxxxxxxxx> wrote: > On 04/30/2013 08:16 AM, Sachin Kamat wrote: >> >> clk_unprepare checks for NULL pointer. Hence convert IS_ERR_OR_NULL >> to IS_ERR only. >> >> Signed-off-by: Sachin Kamat<sachin.kamat@xxxxxxxxxx> >> --- >> drivers/media/platform/s3c-camif/camif-core.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/media/platform/s3c-camif/camif-core.c >> b/drivers/media/platform/s3c-camif/camif-core.c >> index 0d0fab1..2449f13 100644 >> --- a/drivers/media/platform/s3c-camif/camif-core.c >> +++ b/drivers/media/platform/s3c-camif/camif-core.c >> @@ -341,7 +341,7 @@ static void camif_clk_put(struct camif_dev *camif) >> int i; >> >> for (i = 0; i< CLK_MAX_NUM; i++) { >> - if (IS_ERR_OR_NULL(camif->clock[i])) >> + if (IS_ERR(camif->clock[i])) >> continue; >> clk_unprepare(camif->clock[i]); >> clk_put(camif->clock[i]); > > > Patch applied for 3.11 with following chunk squashed to it: Thanks Sylwester. -- With warm regards, Sachin -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html