Skip to content

Commit b555f35

Browse files
committed
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>
1 parent 02dca8c commit b555f35

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

drivers/phy/phy-core.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,8 @@ EXPORT_SYMBOL_GPL(of_phy_provider_unregister);
11221122
* of_phy_provider_unregister to unregister the phy provider.
11231123
*/
11241124
void devm_of_phy_provider_unregister(struct device *dev,
1125-
struct phy_provider *phy_provider) {
1125+
struct phy_provider *phy_provider)
1126+
{
11261127
int r;
11271128

11281129
r = devres_destroy(dev, devm_phy_provider_release, devm_phy_match,

0 commit comments

Comments
 (0)