From: Sachin Kamat Date: Tue, 26 Mar 2013 04:43:36 +0000 (+0530) Subject: mfd: max77686: Use NULL instead of 0 X-Git-Tag: firefly_0821_release~3680^2~568^2~83 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d1ac2c092d9dbd5ef2b903eea77629929c3314f2;p=firefly-linux-kernel-4.4.55.git mfd: max77686: Use NULL instead of 0 'data' is a pointer and hence use NULL instead of 0. Silences the following warning: drivers/mfd/max77686.c:49:50: warning: Using plain integer as NULL pointer Signed-off-by: Sachin Kamat Cc: Jonghwa Lee Signed-off-by: Samuel Ortiz --- diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c index 4d73963cd8f0..1cbb17609c8b 100644 --- a/drivers/mfd/max77686.c +++ b/drivers/mfd/max77686.c @@ -46,7 +46,7 @@ static struct regmap_config max77686_regmap_config = { #ifdef CONFIG_OF static struct of_device_id max77686_pmic_dt_match[] = { - {.compatible = "maxim,max77686", .data = 0}, + {.compatible = "maxim,max77686", .data = NULL}, {}, };