Remove unnecessary DEVICE_NOT_WORKING

This commit is contained in:
Jasmine Iwanek
2022-07-30 21:12:01 -04:00
parent 37bf41ec17
commit acf66baaad
3 changed files with 1 additions and 7 deletions

View File

@@ -337,11 +337,6 @@ device_available(const device_t *d)
int i = 0;
if (d != NULL) {
#ifdef RELEASE_BUILD
if (d->flags & DEVICE_NOT_WORKING)
return(0);
#endif
config = (device_config_t *) d->config;
if (config != NULL) {
while (config->type != -1) {