mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-04 20:55:58 +01:00
backend/drm: drop unused arg from get_possible_crtcs
Constify drmModeConnector while at it.
This commit is contained in:
parent
274c8189d4
commit
de1c73021c
1 changed files with 2 additions and 3 deletions
|
@ -1211,8 +1211,7 @@ static void realloc_crtcs(struct wlr_drm_backend *drm) {
|
|||
}
|
||||
}
|
||||
|
||||
static uint32_t get_possible_crtcs(int fd, drmModeRes *res,
|
||||
drmModeConnector *conn) {
|
||||
static uint32_t get_possible_crtcs(int fd, const drmModeConnector *conn) {
|
||||
uint32_t possible_crtcs = 0;
|
||||
|
||||
for (int i = 0; i < conn->count_encoders; ++i) {
|
||||
|
@ -1403,7 +1402,7 @@ void scan_drm_connectors(struct wlr_drm_backend *drm) {
|
|||
wl_list_insert(wlr_conn->output.modes.prev, &mode->wlr_mode.link);
|
||||
}
|
||||
|
||||
wlr_conn->possible_crtcs = get_possible_crtcs(drm->fd, res, drm_conn);
|
||||
wlr_conn->possible_crtcs = get_possible_crtcs(drm->fd, drm_conn);
|
||||
if (wlr_conn->possible_crtcs == 0) {
|
||||
wlr_drm_conn_log(wlr_conn, WLR_ERROR, "No CRTC possible");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue