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