diff options
author | Varka Bhadram <varkabhadram@gmail.com> | 2015-03-31 09:49:11 +0530 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-04-08 09:54:21 +0200 |
commit | afeb7b45e96239f0bfa610dd40945786f5a9b164 (patch) | |
tree | 96ae1b9942dbc28854d22234af269d19169cd25a /drivers/gpio/gpio-da9055.c | |
parent | 4878b46679f5b0ec86cc6ff48f4edb8a54e2a4d0 (diff) |
gpio: use (!foo) instead of (foo == NULL)
Signed-off-by: Varka Bhadram <varkab@cdac.in>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-da9055.c')
-rw-r--r-- | drivers/gpio/gpio-da9055.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-da9055.c b/drivers/gpio/gpio-da9055.c index b8d757036887..7227e6ed3cb9 100644 --- a/drivers/gpio/gpio-da9055.c +++ b/drivers/gpio/gpio-da9055.c @@ -146,7 +146,7 @@ static int da9055_gpio_probe(struct platform_device *pdev) int ret; gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL); - if (gpio == NULL) + if (!gpio) return -ENOMEM; gpio->da9055 = dev_get_drvdata(pdev->dev.parent); |