summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx
diff options
context:
space:
mode:
authorFabio Estevam2013-05-24 21:55:42 +0200
committerShawn Guo2013-06-17 09:45:15 +0200
commitcc27cce229a935ff04e6a5a9a4bca6f7f848e561 (patch)
treed81fff16a66ba28b98806aefcbf79ae3edf9ed94 /arch/arm/mach-imx
parentARM: imx: irq-common: Include header to avoid sparse warning (diff)
downloadkernel-qcow2-linux-cc27cce229a935ff04e6a5a9a4bca6f7f848e561.tar.gz
kernel-qcow2-linux-cc27cce229a935ff04e6a5a9a4bca6f7f848e561.tar.xz
kernel-qcow2-linux-cc27cce229a935ff04e6a5a9a4bca6f7f848e561.zip
ARM: imx: clk: No need to initialize phandle struct
commit 84344b43c (ARM: i.MX5: Allow DT clock providers) introduce the following sparse warning: arch/arm/mach-imx/clk.c:12:43: warning: Using plain integer as NULL pointer There is no need to initialize phandle, so remove it. Cc: Martin Fuzzey <mfuzzey@parkeon.com> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r--arch/arm/mach-imx/clk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/clk.c b/arch/arm/mach-imx/clk.c
index 53e8788b0d0f..55bc80a00666 100644
--- a/arch/arm/mach-imx/clk.c
+++ b/arch/arm/mach-imx/clk.c
@@ -9,7 +9,7 @@ DEFINE_SPINLOCK(imx_ccm_lock);
static struct clk * __init imx_obtain_fixed_clock_from_dt(const char *name)
{
- struct of_phandle_args phandle = {0};
+ struct of_phandle_args phandle;
struct clk *clk = ERR_PTR(-ENODEV);
char *path;