kms: Remove unused member variable

Task-number: QTBUG-62262
Change-Id: Ia0bdac0ebca1a2e1bf2ae8e7cd4db22bf9c445de
Reviewed-by: Andy Nichols <andy.nichols@qt.io>
This commit is contained in:
Laszlo Agocs 2017-08-03 14:57:43 +02:00
parent 886773eef2
commit f2289bbcbb
2 changed files with 0 additions and 3 deletions

View File

@ -403,7 +403,6 @@ QPlatformScreen *QKmsDevice::createScreenForConnector(drmModeResPtr resources,
}
m_crtc_allocator |= (1 << output.crtc_id);
m_connector_allocator |= (1 << output.connector_id);
vinfo->output = output;
@ -448,7 +447,6 @@ QKmsDevice::QKmsDevice(QKmsScreenConfig *screenConfig, const QString &path)
, m_path(path)
, m_dri_fd(-1)
, m_crtc_allocator(0)
, m_connector_allocator(0)
{
if (m_path.isEmpty()) {
m_path = m_screenConfig->devicePath();

View File

@ -168,7 +168,6 @@ protected:
int m_dri_fd;
quint32 m_crtc_allocator;
quint32 m_connector_allocator;
private:
Q_DISABLE_COPY(QKmsDevice)