Replace COD_E_ZLCREATEFAILED with ESPIPE Signed-off-by: Omar Ramirez Luna <omar.ramirez@xxxxxx> --- arch/arm/plat-omap/include/dspbridge/cod.h | 2 +- arch/arm/plat-omap/include/dspbridge/dev.h | 4 ++-- drivers/dsp/bridge/pmgr/cod.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/plat-omap/include/dspbridge/cod.h b/arch/arm/plat-omap/include/dspbridge/cod.h index 3ee2eb9..56df6d8 100644 --- a/arch/arm/plat-omap/include/dspbridge/cod.h +++ b/arch/arm/plat-omap/include/dspbridge/cod.h @@ -84,7 +84,7 @@ extern void cod_close(struct cod_libraryobj *lib); * Returns: * 0: Success. * COD_E_NOZLFUNCTIONS: Could not initialize ZL functions. - * COD_E_ZLCREATEFAILED: ZL_Create failed. + * -ESPIPE: ZL_Create failed. * -ENOSYS: attrs was not NULL. We don't yet support * non default values of attrs. * Requires: diff --git a/arch/arm/plat-omap/include/dspbridge/dev.h b/arch/arm/plat-omap/include/dspbridge/dev.h index 75e795e..8652f52 100644 --- a/arch/arm/plat-omap/include/dspbridge/dev.h +++ b/arch/arm/plat-omap/include/dspbridge/dev.h @@ -84,7 +84,7 @@ extern u32 dev_brd_write_fxn(void *pArb, * LDR_E_NOMEMORY: PELDR is out of resources. * -EPERM: Unable to find WMD entry point function. * COD_E_NOZLFUNCTIONS: One or more ZL functions exports not found. - * COD_E_ZLCREATEFAILED: Unable to load ZL DLL. + * -ESPIPE: Unable to load ZL DLL. * Requires: * DEV Initialized. * phDevObject != NULL. @@ -126,7 +126,7 @@ extern dsp_status dev_create_device(OUT struct dev_object * LDR_E_NOMEMORY: PELDR is out of resources. * -EPERM: Unable to find WMD entry point function. * COD_E_NOZLFUNCTIONS: One or more ZL functions exports not found. - * COD_E_ZLCREATEFAILED: Unable to load ZL DLL. + * -ESPIPE: Unable to load ZL DLL. * Requires: * DEV Initialized. * phDevObject != NULL. diff --git a/drivers/dsp/bridge/pmgr/cod.c b/drivers/dsp/bridge/pmgr/cod.c index 552a03f..65acd6f 100644 --- a/drivers/dsp/bridge/pmgr/cod.c +++ b/drivers/dsp/bridge/pmgr/cod.c @@ -268,7 +268,7 @@ dsp_status cod_create(OUT struct cod_manager **phMgr, char *pstrDummyFile, if (DSP_FAILED(status)) { cod_delete(mgr_new); - return COD_E_ZLCREATEFAILED; + return -ESPIPE; } /* return the new manager */ -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html