backends/drm: remove unused variable
This commit is contained in:
parent
090b687126
commit
85cd40c49a
1 changed files with 1 additions and 4 deletions
|
@ -196,11 +196,8 @@ bool DrmBackend::initialize()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
const auto devices = m_udev->listGPUs();
|
const auto devices = m_udev->listGPUs();
|
||||||
bool bootVga = false;
|
|
||||||
for (const UdevDevice::Ptr &device : devices) {
|
for (const UdevDevice::Ptr &device : devices) {
|
||||||
if (addGpu(device->devNode())) {
|
addGpu(device->devNode());
|
||||||
bootVga |= device->isBootVga();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue