Skip to content

Commit

Permalink
Input: ads7846 - fix compiler warning in ads7846_probe()
Browse files Browse the repository at this point in the history
This patch fixes the follwing warning introduced by commit
067fb2f ("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>
  • Loading branch information
Dmitry Torokhov committed Jun 2, 2010
1 parent f7a2e30 commit 56960b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/input/touchscreen/ads7846.c
Original file line number Diff line number Diff line change
Expand Up @@ -1164,7 +1164,7 @@ static int __devinit ads7846_probe(struct spi_device *spi)
ts->reg = regulator_get(&spi->dev, "vcc");
if (IS_ERR(ts->reg)) {
err = PTR_ERR(ts->reg);
dev_err(&spi->dev, "unable to get regulator: %ld\n", err);
dev_err(&spi->dev, "unable to get regulator: %d\n", err);
goto err_free_gpio;
}

Expand Down

0 comments on commit 56960b3

Please sign in to comment.