From: Krzysztof Kozlowski Date: Mon, 7 Dec 2020 18:59:52 +0000 (+0100) Subject: soc: fix comment for freeing soc_dev_attr X-Git-Tag: v5.11-rc1~165^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b81144a4ac20f0757b7c965d2fa57de367c7db5;p=thirdparty%2Fkernel%2Flinux.git soc: fix comment for freeing soc_dev_attr The soc_dev_attr is stored soc_dev->attr during soc_device_register() so it could be used till the cleanup call: soc_device_unregister(). Therefore this memory should not be freed prior, but after unregistering soc device. Signed-off-by: Krzysztof Kozlowski Link: https://lore.kernel.org/r/20201207185952.261697-1-krzk@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/base/soc.c b/drivers/base/soc.c index d34609bb73866..0af5363a582c3 100644 --- a/drivers/base/soc.c +++ b/drivers/base/soc.c @@ -168,7 +168,7 @@ out1: } EXPORT_SYMBOL_GPL(soc_device_register); -/* Ensure soc_dev->attr is freed prior to calling soc_device_unregister. */ +/* Ensure soc_dev->attr is freed after calling soc_device_unregister. */ void soc_device_unregister(struct soc_device *soc_dev) { device_unregister(&soc_dev->dev);