]> git.karo-electronics.de Git - karo-tx-linux.git/commit
ASoC: sta32x: use devm_gpiod_get_optional for optional reset gpio
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Tue, 19 May 2015 06:54:27 +0000 (08:54 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 20 May 2015 18:07:42 +0000 (19:07 +0100)
commit1137e58069ac8ce8df5d691f340b7e184616c84a
tree1b8ef590a6f651ec9a9659a867fb6d33e70a0974
parentb787f68c36d49bb1d9236f403813641efa74a031
ASoC: sta32x: use devm_gpiod_get_optional for optional reset gpio

Since 39b2bbe3d715 (gpio: add flags argument to gpiod_get*() functions)
which appeared in v3.17-rc1, the gpiod_get* functions take an additional
parameter that allows to specify direction and initial value for output.

Also there is a variant to find optional gpios that returns NULL if
there is no gpio instead of -ENOENT.

Make use of both features to simplify the driver.

This changes behaviour if gpiod_get returns -ENOSYS which is the case if
CONFIG_GPIOLIB is not enabled. This is a good change because without
GPIOLIB there is no way to determine if the reset gpio is specified in
the device tree. And if it is it must be handled, so erroring out is the
right thing to do.

Furthermore this is one caller less that stops us making the flags
argument to gpiod_get*() mandatory.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/sta32x.c