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 v6.13-rc7 15 lines 293 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2 3#ifndef UDL_EDID_H 4#define UDL_EDID_H 5 6#include <linux/types.h> 7 8struct drm_connector; 9struct drm_edid; 10struct udl_device; 11 12bool udl_probe_edid(struct udl_device *udl); 13const struct drm_edid *udl_edid_read(struct drm_connector *connector); 14 15#endif