Source
816
816
int ret;
817
817
818
818
ret = drmIoctl(fd, DRM_IOCTL_GET_CAP, &cap);
819
819
if (ret)
820
820
return ret;
821
821
822
822
*value = cap.value;
823
823
return 0;
824
824
}
825
825
826
+
int drmSetClientCap(int fd, uint64_t capability, uint64_t value)
827
+
{
828
+
struct drm_set_client_cap cap = { capability, value };
829
+
830
+
return drmIoctl(fd, DRM_IOCTL_SET_CLIENT_CAP, &cap);
831
+
}
832
+
826
833
/**
827
834
* Free the bus ID information.
828
835
*
829
836
* \param busid bus ID information string as given by drmGetBusid().
830
837
*
831
838
* \internal
832
839
* This function is just frees the memory pointed by \p busid.
833
840
*/
834
841
void drmFreeBusid(const char *busid)
835
842
{