Lines Matching refs:deva
171 * @deva: Device to move in dpm_list.
172 * @devb: Device @deva should come before.
174 void device_pm_move_before(struct device *deva, struct device *devb)
177 deva->bus ? deva->bus->name : "No Bus", dev_name(deva),
179 /* Delete deva from dpm_list and reinsert before devb. */
180 list_move_tail(&deva->power.entry, &devb->power.entry);
185 * @deva: Device to move in dpm_list.
186 * @devb: Device @deva should come after.
188 void device_pm_move_after(struct device *deva, struct device *devb)
191 deva->bus ? deva->bus->name : "No Bus", dev_name(deva),
193 /* Delete deva from dpm_list and reinsert after devb. */
194 list_move(&deva->power.entry, &devb->power.entry);