Home
last modified time | relevance | path

Searched refs:kfd_class (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_chardev.c66 static struct class *kfd_class; variable
97 kfd_class = class_create(kfd_dev_name); in kfd_chardev_init()
98 err = PTR_ERR(kfd_class); in kfd_chardev_init()
99 if (IS_ERR(kfd_class)) in kfd_chardev_init()
102 kfd_device = device_create(kfd_class, NULL, in kfd_chardev_init()
112 class_destroy(kfd_class); in kfd_chardev_init()
121 device_destroy(kfd_class, MKDEV(kfd_char_dev_major, 0)); in kfd_chardev_exit()
122 class_destroy(kfd_class); in kfd_chardev_exit()