Skip to content
Snippets Groups Projects
Commit 786df9c2 authored by Russell King's avatar Russell King Committed by David S. Miller
Browse files

net: phy: simplify phy_supported_speeds()


Simplify the loop in phy_supported_speeds().

Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d0613037
No related branches found
No related tags found
No related merge requests found
......@@ -320,17 +320,11 @@ unsigned int phy_supported_speeds(struct phy_device *phy,
unsigned int count = 0;
unsigned int idx = 0;
for (idx = 0; idx < ARRAY_SIZE(settings) && count < size; idx++) {
if (!(settings[idx].setting & phy->supported))
continue;
for (idx = 0; idx < ARRAY_SIZE(settings) && count < size; idx++)
/* Assumes settings are grouped by speed */
if ((count == 0) ||
(speeds[count - 1] != settings[idx].speed)) {
speeds[count] = settings[idx].speed;
count++;
}
}
if ((settings[idx].setting & phy->supported) &&
(count == 0 || speeds[count - 1] != settings[idx].speed))
speeds[count++] = settings[idx].speed;
return count;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment