Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

phy: core: fix code style in devm_of_phy_provider_unregister

Documentation/process/coding-style.rst says:
"functions: they have the opening brace at the beginning of the next
line"

devm_of_phy_provider_unregister() function has opening brace at same
line, so fix it up.

Link: https://lore.kernel.org/r/20200629145010.122675-1-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>

+2 -1
+2 -1
drivers/phy/phy-core.c
··· 1122 1122 * of_phy_provider_unregister to unregister the phy provider. 1123 1123 */ 1124 1124 void devm_of_phy_provider_unregister(struct device *dev, 1125 - struct phy_provider *phy_provider) { 1125 + struct phy_provider *phy_provider) 1126 + { 1126 1127 int r; 1127 1128 1128 1129 r = devres_destroy(dev, devm_phy_provider_release, devm_phy_match,