Searched refs:deva (Results 1 - 4 of 4) sorted by relevance

/linux-master/drivers/base/power/
H A Dpower.h145 static inline void device_pm_move_before(struct device *deva, argument
147 static inline void device_pm_move_after(struct device *deva, argument
H A Dmain.c169 * @deva: Device to move in dpm_list.
170 * @devb: Device @deva should come before.
172 void device_pm_move_before(struct device *deva, struct device *devb) argument
175 deva->bus ? deva->bus->name : "No Bus", dev_name(deva),
177 /* Delete deva from dpm_list and reinsert before devb. */
178 list_move_tail(&deva->power.entry, &devb->power.entry);
183 * @deva: Device to move in dpm_list.
184 * @devb: Device @deva shoul
186 device_pm_move_after(struct device *deva, struct device *devb) argument
[all...]
/linux-master/drivers/base/
H A Dcore.c3025 * @deva: Device to move.
3026 * @devb: Device @deva should come before.
3028 static void devices_kset_move_before(struct device *deva, struct device *devb) argument
3033 dev_name(deva), dev_name(devb));
3035 list_move_tail(&deva->kobj.entry, &devb->kobj.entry);
3041 * @deva: Device to move
3042 * @devb: Device @deva should come after.
3044 static void devices_kset_move_after(struct device *deva, struct device *devb) argument
3049 dev_name(deva), dev_name(devb));
3051 list_move(&deva
[all...]
/linux-master/arch/arm64/kvm/vgic/
H A Dvgic-its.c2451 struct its_device *deva = container_of(a, struct its_device, dev_list); local
2454 if (deva->device_id < devb->device_id)

Completed in 189 milliseconds