mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
backend/drm: drop unused arg in connector_get_current_mode()
This commit is contained in:
parent
c675380c56
commit
caaea01bf6
1 changed files with 2 additions and 4 deletions
|
@ -1200,8 +1200,7 @@ static struct wlr_drm_connector *create_drm_connector(struct wlr_drm_backend *dr
|
||||||
return wlr_conn;
|
return wlr_conn;
|
||||||
}
|
}
|
||||||
|
|
||||||
static drmModeModeInfo *connector_get_current_mode(
|
static drmModeModeInfo *connector_get_current_mode(struct wlr_drm_connector *wlr_conn) {
|
||||||
struct wlr_drm_connector *wlr_conn, const drmModeConnector *drm_conn) {
|
|
||||||
struct wlr_drm_backend *drm = wlr_conn->backend;
|
struct wlr_drm_backend *drm = wlr_conn->backend;
|
||||||
|
|
||||||
if (wlr_conn->crtc == NULL) {
|
if (wlr_conn->crtc == NULL) {
|
||||||
|
@ -1301,8 +1300,7 @@ static void connect_drm_connector(struct wlr_drm_connector *wlr_conn,
|
||||||
|
|
||||||
// Before iterating on the conn's modes, get the current KMS mode
|
// Before iterating on the conn's modes, get the current KMS mode
|
||||||
// in use from the connector's CRTC.
|
// in use from the connector's CRTC.
|
||||||
drmModeModeInfo *current_modeinfo =
|
drmModeModeInfo *current_modeinfo = connector_get_current_mode(wlr_conn);
|
||||||
connector_get_current_mode(wlr_conn, drm_conn);
|
|
||||||
|
|
||||||
wlr_log(WLR_INFO, "Detected modes:");
|
wlr_log(WLR_INFO, "Detected modes:");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue