Symbol: can_transceiver_phy
drivers/phy/phy-can-transceiver.c
106
return priv->can_transceiver_phy[0].generic_phy;
drivers/phy/phy-can-transceiver.c
115
return priv->can_transceiver_phy[idx].generic_phy;
drivers/phy/phy-can-transceiver.c
122
struct can_transceiver_phy *can_transceiver_phy;
drivers/phy/phy-can-transceiver.c
143
priv = devm_kzalloc(dev, struct_size(priv, can_transceiver_phy, num_ch), GFP_KERNEL);
drivers/phy/phy-can-transceiver.c
169
can_transceiver_phy = &priv->can_transceiver_phy[i];
drivers/phy/phy-can-transceiver.c
170
can_transceiver_phy->priv = priv;
drivers/phy/phy-can-transceiver.c
180
can_transceiver_phy->generic_phy = phy;
drivers/phy/phy-can-transceiver.c
181
can_transceiver_phy->priv = priv;
drivers/phy/phy-can-transceiver.c
188
can_transceiver_phy->standby_gpio = standby_gpio;
drivers/phy/phy-can-transceiver.c
196
can_transceiver_phy->enable_gpio = enable_gpio;
drivers/phy/phy-can-transceiver.c
204
can_transceiver_phy->silent_gpio = silent_gpio;
drivers/phy/phy-can-transceiver.c
207
phy_set_drvdata(can_transceiver_phy->generic_phy, can_transceiver_phy);
drivers/phy/phy-can-transceiver.c
34
struct can_transceiver_phy can_transceiver_phy[] __counted_by(num_ch);
drivers/phy/phy-can-transceiver.c
40
struct can_transceiver_phy *can_transceiver_phy = phy_get_drvdata(phy);
drivers/phy/phy-can-transceiver.c
41
struct can_transceiver_priv *priv = can_transceiver_phy->priv;
drivers/phy/phy-can-transceiver.c
51
gpiod_set_value_cansleep(can_transceiver_phy->silent_gpio, 0);
drivers/phy/phy-can-transceiver.c
52
gpiod_set_value_cansleep(can_transceiver_phy->standby_gpio, 0);
drivers/phy/phy-can-transceiver.c
53
gpiod_set_value_cansleep(can_transceiver_phy->enable_gpio, 1);
drivers/phy/phy-can-transceiver.c
61
struct can_transceiver_phy *can_transceiver_phy = phy_get_drvdata(phy);
drivers/phy/phy-can-transceiver.c
62
struct can_transceiver_priv *priv = can_transceiver_phy->priv;
drivers/phy/phy-can-transceiver.c
64
gpiod_set_value_cansleep(can_transceiver_phy->silent_gpio, 1);
drivers/phy/phy-can-transceiver.c
65
gpiod_set_value_cansleep(can_transceiver_phy->standby_gpio, 1);
drivers/phy/phy-can-transceiver.c
66
gpiod_set_value_cansleep(can_transceiver_phy->enable_gpio, 0);