From: Krzysztof Kozlowski Date: Wed, 25 Nov 2020 16:44:49 +0000 (+0100) Subject: ASoC: max98371: drop driver pm=NULL assignment X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fe4b501e56af81f88215f943c2caef5eded26920;p=linux.git ASoC: max98371: drop driver pm=NULL assignment There is no point to explicitly set driver .pm field to NULL. Signed-off-by: Krzysztof Kozlowski Link: https://lore.kernel.org/r/20201125164452.89239-37-krzk@kernel.org Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/max98371.c b/sound/soc/codecs/max98371.c index 0b438303e1d5d..e424779db02bf 100644 --- a/sound/soc/codecs/max98371.c +++ b/sound/soc/codecs/max98371.c @@ -419,7 +419,6 @@ MODULE_DEVICE_TABLE(of, max98371_of_match); static struct i2c_driver max98371_i2c_driver = { .driver = { .name = "max98371", - .pm = NULL, .of_match_table = of_match_ptr(max98371_of_match), }, .probe = max98371_i2c_probe,