Lines Matching refs:test_device
743 struct device *test_device; in kunit_device_test() local
746 test_device = kunit_device_register(test, "my_device"); in kunit_device_test()
747 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, test_device); in kunit_device_test()
750 devm_add_action(test_device, test_dev_action, &action_was_run); in kunit_device_test()
754 kunit_device_unregister(test, test_device); in kunit_device_test()
761 struct device *test_device; in kunit_device_cleanup_test() local
764 test_device = kunit_device_register(test, "my_device"); in kunit_device_cleanup_test()
765 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, test_device); in kunit_device_cleanup_test()
768 devm_add_action(test_device, test_dev_action, &action_was_run); in kunit_device_cleanup_test()
805 struct device *test_device; in kunit_device_driver_test() local
819 test_device = kunit_device_register_with_driver(test, "my_device", test_driver); in kunit_device_driver_test()
822 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, test_device); in kunit_device_driver_test()
828 devm_add_action(test_device, test_dev_action, &test_state->action_was_run); in kunit_device_driver_test()
832 kunit_device_unregister(test, test_device); in kunit_device_driver_test()
833 test_device = NULL; in kunit_device_driver_test()
843 test_device = kunit_device_register_with_driver(test, "my_device", test_driver); in kunit_device_driver_test()
846 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, test_device); in kunit_device_driver_test()