diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-06-02 03:40:06 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-06-02 03:40:35 -0400 |
commit | 56960b3602be6fde9f09c7958fa06b26384307cc (patch) | |
tree | 1aa27b59625574fdd430b5c9464a4cbf1a3eb650 /drivers | |
parent | f7a2e30246281944064113dafbafe3eb14cd89e3 (diff) |
Input: ads7846 - fix compiler warning in ads7846_probe()
This patch fixes the follwing warning introduced by commit
067fb2f648543894ce775082c5636f4c32b99e4f ("Input: ads7846 - return error on
regulator_get() failure"):
drivers/input/touchscreen/ads7846.c: In function 'ads7846_probe':
drivers/input/touchscreen/ads7846.c:1167: warning: format '%ld' expects
type 'long int', but argument 4 has type 'int'
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/touchscreen/ads7846.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c index 634f6f6b9b13..a9fdf55c0238 100644 --- a/drivers/input/touchscreen/ads7846.c +++ b/drivers/input/touchscreen/ads7846.c | |||
@@ -1164,7 +1164,7 @@ static int __devinit ads7846_probe(struct spi_device *spi) | |||
1164 | ts->reg = regulator_get(&spi->dev, "vcc"); | 1164 | ts->reg = regulator_get(&spi->dev, "vcc"); |
1165 | if (IS_ERR(ts->reg)) { | 1165 | if (IS_ERR(ts->reg)) { |
1166 | err = PTR_ERR(ts->reg); | 1166 | err = PTR_ERR(ts->reg); |
1167 | dev_err(&spi->dev, "unable to get regulator: %ld\n", err); | 1167 | dev_err(&spi->dev, "unable to get regulator: %d\n", err); |
1168 | goto err_free_gpio; | 1168 | goto err_free_gpio; |
1169 | } | 1169 | } |
1170 | 1170 | ||