Replace DSP_EDCDGETSECT with EACCES Signed-off-by: Omar Ramirez Luna <omar.ramirez@xxxxxx> --- arch/arm/plat-omap/include/dspbridge/dbdcd.h | 2 +- drivers/dsp/bridge/rmgr/dbdcd.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/plat-omap/include/dspbridge/dbdcd.h b/arch/arm/plat-omap/include/dspbridge/dbdcd.h index b8daea9..e615c8a 100644 --- a/arch/arm/plat-omap/include/dspbridge/dbdcd.h +++ b/arch/arm/plat-omap/include/dspbridge/dbdcd.h @@ -257,7 +257,7 @@ extern dsp_status dcd_get_library_name(IN struct dcd_manager *hdcd_mgr, * 0: Success. * DSP_EDCDPARSESECT: Unable to parse content of object code section. * DSP_EDCDREADSECT: Unable to read object code section. - * DSP_EDCDGETSECT: Unable to access object code section. + * -EACCES: Unable to access object code section. * -EACCES: Unable to load code base. * -EPERM: General failure. * -EFAULT: Invalid DCD_HMANAGER handle. diff --git a/drivers/dsp/bridge/rmgr/dbdcd.c b/drivers/dsp/bridge/rmgr/dbdcd.c index a2cda6b..a3d79ba 100644 --- a/drivers/dsp/bridge/rmgr/dbdcd.c +++ b/drivers/dsp/bridge/rmgr/dbdcd.c @@ -483,7 +483,7 @@ dsp_status dcd_get_object_def(IN struct dcd_manager *hdcd_mgr, /* Get section information. */ status = cod_get_section(lib, sz_sect_name, &ul_addr, &ul_len); if (DSP_FAILED(status)) { - status = DSP_EDCDGETSECT; + status = -EACCES; goto func_end; } -- 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