[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20180723105429.GA7428@minipc.home>
Date: Mon, 23 Jul 2018 11:54:29 +0100
From: Laurence Rochfort <laurence.rochfort@...il.com>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Christian Gromm <christian.gromm@...rochip.com>,
linux-kernel@...r.kernel.org, devel@...verdev.osuosl.org
Cc: laurence.rochfort@...il.com
Subject: [PATCH] staging: most: Use NULL pointer not plain integer
Fix sparse warning: Using plain integer as NULL pointer
Signed-off-by: Laurence Rochfort <laurence.rochfort@...il.com>
---
drivers/staging/most/dim2/dim2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/most/dim2/dim2.c b/drivers/staging/most/dim2/dim2.c
index fe90a7c..31fbc1a 100644
--- a/drivers/staging/most/dim2/dim2.c
+++ b/drivers/staging/most/dim2/dim2.c
@@ -785,7 +785,7 @@ static int dim2_probe(struct platform_device *pdev)
if (ret)
return ret;
- dev->disable_platform = pdata ? pdata->disable : 0;
+ dev->disable_platform = pdata ? pdata->disable : NULL;
dev_info(&pdev->dev, "sync: num of frames per sub-buffer: %u\n", fcnt);
hal_ret = dim_startup(dev->io_base, dev->clk_speed, fcnt);
--
2.9.5
Powered by blists - more mailing lists