From: Jingoo Han Date: Fri, 2 Aug 2013 06:01:01 +0000 (+0900) Subject: mfd: menelaus: Use NULL instead of 0 X-Git-Tag: v3.12-rc1~100^2~7^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59a9f7a32adf6537b4e4db8ca204eeb77d7a634e;p=platform%2Fkernel%2Flinux-exynos.git mfd: menelaus: Use NULL instead of 0 'mmc_callback_data' and 'vtg' are pointers. Fix the following sparse warning: drivers/mfd/menelaus.c:445:43: warning: Using plain integer as NULL pointer drivers/mfd/menelaus.c:469:20: warning: Using plain integer as NULL pointer Signed-off-by: Jingoo Han Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/menelaus.c b/drivers/mfd/menelaus.c index 9b72a44..f24df8c 100644 --- a/drivers/mfd/menelaus.c +++ b/drivers/mfd/menelaus.c @@ -442,7 +442,7 @@ void menelaus_unregister_mmc_callback(void) menelaus_remove_irq_work(MENELAUS_MMC_S2D1_IRQ); the_menelaus->mmc_callback = NULL; - the_menelaus->mmc_callback_data = 0; + the_menelaus->mmc_callback_data = NULL; } EXPORT_SYMBOL(menelaus_unregister_mmc_callback); @@ -466,7 +466,7 @@ static int menelaus_set_voltage(const struct menelaus_vtg *vtg, int mV, struct i2c_client *c = the_menelaus->client; mutex_lock(&the_menelaus->lock); - if (vtg == 0) + if (!vtg) goto set_voltage; ret = menelaus_read_reg(vtg->vtg_reg);