| 1041 | } |
| 1042 | |
| 1043 | static int |
| 1044 | dpaa_event_dev_probe(struct rte_vdev_device *vdev) |
| 1045 | { |
| 1046 | const char *name; |
| 1047 | const char *params; |
| 1048 | |
| 1049 | name = rte_vdev_device_name(vdev); |
| 1050 | DPAA_EVENTDEV_INFO("Initializing %s", name); |
| 1051 | |
| 1052 | params = rte_vdev_device_args(vdev); |
| 1053 | |
| 1054 | return dpaa_event_dev_create(name, params, vdev); |
| 1055 | } |
| 1056 | |
| 1057 | static int |
| 1058 | dpaa_event_dev_remove(struct rte_vdev_device *vdev) |
nothing calls this directly
no test coverage detected