Changeset 8a637a4 in mainline for uspace/srv/devman/drv_conn.c


Ignore:
Timestamp:
2015-09-30T17:47:41Z (9 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f1f7584
Parents:
a955fcc
Message:

remove EEXISTS in favor of EEXIST

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/drv_conn.c

    ra955fcc r8a637a4  
    101101                    driver->name);
    102102                fibril_mutex_unlock(&driver->driver_mutex);
    103                 async_answer_0(callid, EEXISTS);
     103                async_answer_0(callid, EEXIST);
    104104                return NULL;
    105105        }
     
    278278                fibril_rwlock_write_unlock(&tree->rwlock);
    279279                dev_del_ref(pdev);
    280                 async_answer_0(callid, EEXISTS);
     280                async_answer_0(callid, EEXIST);
    281281                printf(NAME ": Warning, driver tried to register `%s' twice.\n",
    282282                    fun_name);
Note: See TracChangeset for help on using the changeset viewer.