Symbol: can_transceiver_phy
drivers/phy/phy-can-transceiver.c
146
return priv->can_transceiver_phy[0].generic_phy;
drivers/phy/phy-can-transceiver.c
155
return priv->can_transceiver_phy[idx].generic_phy;
drivers/phy/phy-can-transceiver.c
162
struct can_transceiver_phy *can_transceiver_phy;
drivers/phy/phy-can-transceiver.c
179
priv = devm_kzalloc(dev, struct_size(priv, can_transceiver_phy, num_ch), GFP_KERNEL);
drivers/phy/phy-can-transceiver.c
197
can_transceiver_phy = &priv->can_transceiver_phy[i];
drivers/phy/phy-can-transceiver.c
198
can_transceiver_phy->priv = priv;
drivers/phy/phy-can-transceiver.c
208
can_transceiver_phy->generic_phy = phy;
drivers/phy/phy-can-transceiver.c
209
can_transceiver_phy->priv = priv;
drivers/phy/phy-can-transceiver.c
216
can_transceiver_phy->standby_gpio = standby_gpio;
drivers/phy/phy-can-transceiver.c
224
can_transceiver_phy->enable_gpio = enable_gpio;
drivers/phy/phy-can-transceiver.c
232
can_transceiver_phy->silent_gpio = silent_gpio;
drivers/phy/phy-can-transceiver.c
235
phy_set_drvdata(can_transceiver_phy->generic_phy, can_transceiver_phy);
drivers/phy/phy-can-transceiver.c
35
struct can_transceiver_phy can_transceiver_phy[] __counted_by(num_ch);
drivers/phy/phy-can-transceiver.c
41
struct can_transceiver_phy *can_transceiver_phy = phy_get_drvdata(phy);
drivers/phy/phy-can-transceiver.c
42
struct can_transceiver_priv *priv = can_transceiver_phy->priv;
drivers/phy/phy-can-transceiver.c
52
gpiod_set_value_cansleep(can_transceiver_phy->silent_gpio, 0);
drivers/phy/phy-can-transceiver.c
53
gpiod_set_value_cansleep(can_transceiver_phy->standby_gpio, 0);
drivers/phy/phy-can-transceiver.c
54
gpiod_set_value_cansleep(can_transceiver_phy->enable_gpio, 1);
drivers/phy/phy-can-transceiver.c
62
struct can_transceiver_phy *can_transceiver_phy = phy_get_drvdata(phy);
drivers/phy/phy-can-transceiver.c
63
struct can_transceiver_priv *priv = can_transceiver_phy->priv;
drivers/phy/phy-can-transceiver.c
65
gpiod_set_value_cansleep(can_transceiver_phy->silent_gpio, 1);
drivers/phy/phy-can-transceiver.c
66
gpiod_set_value_cansleep(can_transceiver_phy->standby_gpio, 1);
drivers/phy/phy-can-transceiver.c
67
gpiod_set_value_cansleep(can_transceiver_phy->enable_gpio, 0);