Skip to content
Snippets Groups Projects
Commit bdaeb8f2 authored by Michal Simek's avatar Michal Simek
Browse files

common: mii: Do not allow to exceed max phy limit


Phy can have addresses 0-31. Check this boundary to ensure that user
can't call commands on phy address 32 and more.

Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
parent f3bd7280
No related branches found
No related tags found
No related merge requests found
...@@ -314,6 +314,11 @@ static int do_mii(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) ...@@ -314,6 +314,11 @@ static int do_mii(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
mask = simple_strtoul(argv[5], NULL, 16); mask = simple_strtoul(argv[5], NULL, 16);
} }
if (addrhi > 31) {
printf("Incorrect PHY address. Range should be 0-31\n");
return CMD_RET_USAGE;
}
/* use current device */ /* use current device */
devname = miiphy_get_current_dev(); devname = miiphy_get_current_dev();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment