Changeset e90019d in mainline


Ignore:
Timestamp:
2024-09-07T14:09:43Z (4 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
ca127f37
Parents:
aba2d04
Message:

Skip missing devices when loading seat configuration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/display.c

    raba2d04 re90019d  
    215215                }
    216216
     217                /*
     218                 * Load device configuration entry. If the device
     219                 * is not currently connected (ENOENT), skip it.
     220                 */
    217221                rc = ds_idevcfg_load(display, nidevcfg, &idevcfg);
    218                 if (rc != EOK)
     222                if (rc != EOK && rc != ENOENT)
    219223                        goto error;
    220224
Note: See TracChangeset for help on using the changeset viewer.