diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2018-12-13 23:00:11 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-12-15 23:10:20 +0300 |
commit | 15c6d8e565943a904172de69cc13c53f724fa16c (patch) | |
tree | 6bc398ad67bbfc737b9eaac70c63662150101c44 /include/linux/mod_devicetable.h | |
parent | ade446403bfb79d3528d56071a84b15351a139ad (diff) | |
download | linux-15c6d8e565943a904172de69cc13c53f724fa16c.tar.xz |
mod_devicetable.h: correct kerneldoc typo, "PHYSID2" -> "MII_PHYSID2"
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/mod_devicetable.h')
-rw-r--r-- | include/linux/mod_devicetable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 01797cb4587e..a0dcc9b6a723 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h @@ -565,7 +565,7 @@ struct platform_device_id { /** * struct mdio_device_id - identifies PHY devices on an MDIO/MII bus * @phy_id: The result of - * (mdio_read(&MII_PHYSID1) << 16 | mdio_read(&PHYSID2)) & @phy_id_mask + * (mdio_read(&MII_PHYSID1) << 16 | mdio_read(&MII_PHYSID2)) & @phy_id_mask * for this PHY type * @phy_id_mask: Defines the significant bits of @phy_id. A value of 0 * is used to terminate an array of struct mdio_device_id. |