]> git.baikalelectronics.ru Git - kernel.git/commit
ASoC: codecs: PCM1789: unconditionally flush work
authorStefan Agner <stefan@agner.ch>
Sun, 17 Jun 2018 13:45:29 +0000 (15:45 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 18 Jun 2018 11:54:38 +0000 (12:54 +0100)
commit8faaf8bad19a00632570246e906fde4f04b19633
tree03fa7f33d92df10e0b01cde5a0bc340848114aa7
parentdf8dcd8a9c6c736032ae2622061b7259fdbdd146
ASoC: codecs: PCM1789: unconditionally flush work

Work is guaranteed to be initialized on exit. Drop the unnecessary
if statement and always call flush_work.

This fixes a warning seen with clang:
sound/soc/codecs/pcm1789.c:265:13: warning: address of 'priv->work' will
      always evaluate to 'true' [-Wpointer-bool-conversion]
        if (&priv->work)
        ~~   ~~~~~~^~~~

Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/pcm1789.c