net: phy: Fix ethernet-phy-id <dot> in the code
Use dot instead of comma. The fix doesn't affect anything but it is good to
be aligned with used pattern. The first is used only for string size
calculation and the second change is in the comment.
Fixes: db681d4929
("net: phy: Add new read ethernet phy id function")
Signed-off-by: Michal Simek <michal.simek@amd.com>
This commit is contained in:
parent
96dcde487e
commit
2e9946aba8
1 changed files with 2 additions and 2 deletions
|
@ -1197,12 +1197,12 @@ int ofnode_read_eth_phy_id(ofnode node, u16 *vendor, u16 *device)
|
|||
while (list < end) {
|
||||
len = strlen(list);
|
||||
|
||||
if (len >= strlen("ethernet-phy-idVVVV,DDDD")) {
|
||||
if (len >= strlen("ethernet-phy-idVVVV.DDDD")) {
|
||||
char *s = strstr(list, "ethernet-phy-id");
|
||||
|
||||
/*
|
||||
* check if the string is something like
|
||||
* ethernet-phy-idVVVV,DDDD
|
||||
* ethernet-phy-idVVVV.DDDD
|
||||
*/
|
||||
if (s && s[19] == '.') {
|
||||
s += strlen("ethernet-phy-id");
|
||||
|
|
Loading…
Reference in a new issue