diff options
author | Lee Jones <lee.jones@linaro.org> | 2013-01-14 12:17:34 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2013-02-04 03:31:38 -0500 |
commit | fad55a869ba1bf0d1ab7e4c8bff0b171eb5486ee (patch) | |
tree | 9118f89d9aecf976cb9505063138011028e03ae5 | |
parent | 0b337e70d30a8092a3e6c35ccb341c3655d9d543 (diff) |
mfd: ab8500-debugfs: Use NULL to initialise remaining NULL pointer
Partly for coding style reasons, but mostly because sparse warns on it.
This patch is a completion of a previous patch by Mark Brown.
Reviewed-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r-- | drivers/mfd/ab8500-debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/ab8500-debugfs.c b/drivers/mfd/ab8500-debugfs.c index 4699fff322a0..1bb74297a3a7 100644 --- a/drivers/mfd/ab8500-debugfs.c +++ b/drivers/mfd/ab8500-debugfs.c | |||
@@ -60,7 +60,7 @@ struct ab8500_prcmu_ranges { | |||
60 | static struct ab8500_prcmu_ranges debug_ranges[AB8500_NUM_BANKS] = { | 60 | static struct ab8500_prcmu_ranges debug_ranges[AB8500_NUM_BANKS] = { |
61 | [0x0] = { | 61 | [0x0] = { |
62 | .num_ranges = 0, | 62 | .num_ranges = 0, |
63 | .range = 0, | 63 | .range = NULL, |
64 | }, | 64 | }, |
65 | [AB8500_SYS_CTRL1_BLOCK] = { | 65 | [AB8500_SYS_CTRL1_BLOCK] = { |
66 | .num_ranges = 3, | 66 | .num_ranges = 3, |