@@ -122,9 +122,6 @@
* found in the COFF file. */
#define DSP_ESYMBOL (DSP_EBASE + 0x1c)
-/* UUID not found in registry. */
-#define DSP_EUUID (DSP_EBASE + 0x1d)
-
/* Unable to read content of DCD data section ; this is typically caused by
* improperly configured nodes. */
#define DSP_EDCDREADSECT (DSP_EBASE + 0x1e)
@@ -40,7 +40,7 @@
* Returns:
* DSP_SOK: Success.
* ENOMEM: Insufficient memory on GPP.
- * DSP_EUUID: Node UUID has not been registered.
+ * ENOKEY: Node UUID has not been registered.
* DSP_ESYMBOL: iAlg functions not found for a DAIS node.
* EDOM: attr_in != NULL and attr_in->prio out of
* range.
@@ -441,7 +441,7 @@ dsp_status dcd_get_object_def(IN struct dcd_manager *hdcd_mgr,
reg_get_value(sz_reg_key, (u8 *) sz_reg_data, &dw_buf_size);
if (DSP_FAILED(status)) {
- status = DSP_EUUID;
+ status = ENOKEY;
goto func_end;
}