blob: 90a0cc3dc97d64a73559e9cb62ca78cbd2fc9767 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Public domain. */
#include <drm/drm_device.h>
#include <drm/drm_connector.h>
int
drm_connector_attach_content_protection_property(struct drm_connector *connector,
bool hdcp_content_type)
{
return -ENOSYS;
}
int
drm_hdcp_check_ksvs_revoked(struct drm_device *drm_dev, u8 *ksvs, u32 ksv_count)
{
STUB();
return -ENOSYS;
}
void
drm_hdcp_update_content_protection(struct drm_connector *connector, u64 val)
{
STUB();
}
|