Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.17-rc1 13 lines 287 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _DRM_SYSFS_H_ 3#define _DRM_SYSFS_H_ 4 5struct drm_device; 6struct device; 7 8int drm_class_device_register(struct device *dev); 9void drm_class_device_unregister(struct device *dev); 10 11void drm_sysfs_hotplug_event(struct drm_device *dev); 12 13#endif