mirror of
https://github.com/torvalds/linux.git
synced 2025-11-05 03:00:13 +02:00
net: phy: mediatek: use new phy_package_shared getters
Use the new getters for members of struct phy_package_shared. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Link: https://patch.msgid.link/356a257f-68d0-47bc-a474-4dafaeaa149f@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
890fe6841d
commit
dc5a6164fe
1 changed files with 4 additions and 3 deletions
|
|
@ -8,6 +8,7 @@
|
||||||
#include <linux/phy.h>
|
#include <linux/phy.h>
|
||||||
#include <linux/regmap.h>
|
#include <linux/regmap.h>
|
||||||
|
|
||||||
|
#include "../phylib.h"
|
||||||
#include "mtk.h"
|
#include "mtk.h"
|
||||||
|
|
||||||
#define MTK_GPHY_ID_MT7981 0x03a29461
|
#define MTK_GPHY_ID_MT7981 0x03a29461
|
||||||
|
|
@ -1278,7 +1279,7 @@ static int mt798x_phy_led_hw_control_set(struct phy_device *phydev, u8 index,
|
||||||
|
|
||||||
static bool mt7988_phy_led_get_polarity(struct phy_device *phydev, int led_num)
|
static bool mt7988_phy_led_get_polarity(struct phy_device *phydev, int led_num)
|
||||||
{
|
{
|
||||||
struct mtk_socphy_shared *priv = phydev->shared->priv;
|
struct mtk_socphy_shared *priv = phy_package_get_priv(phydev);
|
||||||
u32 polarities;
|
u32 polarities;
|
||||||
|
|
||||||
if (led_num == 0)
|
if (led_num == 0)
|
||||||
|
|
@ -1317,7 +1318,7 @@ static int mt7988_phy_fix_leds_polarities(struct phy_device *phydev)
|
||||||
static int mt7988_phy_probe_shared(struct phy_device *phydev)
|
static int mt7988_phy_probe_shared(struct phy_device *phydev)
|
||||||
{
|
{
|
||||||
struct device_node *np = dev_of_node(&phydev->mdio.bus->dev);
|
struct device_node *np = dev_of_node(&phydev->mdio.bus->dev);
|
||||||
struct mtk_socphy_shared *shared = phydev->shared->priv;
|
struct mtk_socphy_shared *shared = phy_package_get_priv(phydev);
|
||||||
struct regmap *regmap;
|
struct regmap *regmap;
|
||||||
u32 reg;
|
u32 reg;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
@ -1368,7 +1369,7 @@ static int mt7988_phy_probe(struct phy_device *phydev)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
shared = phydev->shared->priv;
|
shared = phy_package_get_priv(phydev);
|
||||||
priv = &shared->priv[phydev->mdio.addr];
|
priv = &shared->priv[phydev->mdio.addr];
|
||||||
|
|
||||||
phydev->priv = priv;
|
phydev->priv = priv;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue