Merge pull request #379 from NVIDIA/exists-fallback

[R550 driver support] add fallback logic to device.Exists(name)
This commit is contained in:
Evan Lezar 2024-02-27 22:25:33 +02:00 committed by GitHub
commit 6780afbed1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,7 +67,7 @@ func (d devices) Count() int {
// Exists checks if a Device with a given name exists or not // Exists checks if a Device with a given name exists or not
func (d devices) Exists(name Name) bool { func (d devices) Exists(name Name) bool {
_, exists := d[name] _, exists := d.Get(name)
return exists return exists
} }