diff mbox

[02/11] clk: tegra: Fix a bunch of sparse warnings

Message ID 1427718673-32011-3-git-send-email-thierry.reding@gmail.com
State Accepted, archived
Headers show

Commit Message

Thierry Reding March 30, 2015, 12:31 p.m. UTC
From: Thierry Reding <treding@nvidia.com>

The second to last parameter of the TEGRA_CLK_PERIPH macro denotes a
table and should therefore users should pass in NULL instead of 0.

Fixes a bunch of sparse warnings like this:

	warning: Using plain integer as NULL pointer

Signed-off-by: Thierry Reding <treding@nvidia.com>
---
 drivers/clk/tegra/clk-tegra-periph.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Paul Walmsley March 31, 2015, 8:25 a.m. UTC | #1
On Mon, 30 Mar 2015, Thierry Reding wrote:

> From: Thierry Reding <treding@nvidia.com>
> 
> The second to last parameter of the TEGRA_CLK_PERIPH macro denotes a
> table and should therefore users should pass in NULL instead of 0.
> 
> Fixes a bunch of sparse warnings like this:
> 
> 	warning: Using plain integer as NULL pointer
> 
> Signed-off-by: Thierry Reding <treding@nvidia.com>

Reviewed-by: Paul Walmsley <paul@pwsan.com>

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

Patch

diff --git a/drivers/clk/tegra/clk-tegra-periph.c b/drivers/clk/tegra/clk-tegra-periph.c
index cef0727b9eec..46af9244ba74 100644
--- a/drivers/clk/tegra/clk-tegra-periph.c
+++ b/drivers/clk/tegra/clk-tegra-periph.c
@@ -218,7 +218,7 @@ 
 		.clk_id = _clk_id,					\
 		.p.parent_name = _parent_name,				\
 		.periph = TEGRA_CLK_PERIPH(0, 0, 0, 0, 0, 0, 0,		\
-				_clk_num, _gate_flags, 0, NULL),	\
+				_clk_num, _gate_flags, NULL, NULL),	\
 		.flags = _flags						\
 	}