Replace DSP_ENOSECT with ENXIO Signed-off-by: Omar Ramirez Luna <omar.ramirez@xxxxxx> --- arch/arm/plat-omap/include/dspbridge/dblldefs.h | 8 ++++---- drivers/dsp/bridge/pmgr/dbll.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm/plat-omap/include/dspbridge/dblldefs.h b/arch/arm/plat-omap/include/dspbridge/dblldefs.h index 18a862f..e780e87 100644 --- a/arch/arm/plat-omap/include/dspbridge/dblldefs.h +++ b/arch/arm/plat-omap/include/dspbridge/dblldefs.h @@ -299,7 +299,7 @@ typedef bool(*dbll_get_c_addr_fxn) (struct dbll_library_obj *lib, char *name, * psize - Location to store section size on output. * Returns: * 0: Success. - * DSP_ENOSECT: Section not found. + * -ENXIO: Section not found. * Requires: * DBL initialized. * Valid lib. @@ -359,7 +359,7 @@ typedef dsp_status(*dbll_load_fxn) (struct dbll_library_obj *lib, * attrs - Contains write function and handle to pass to it. * Returns: * 0: Success. - * DSP_ENOSECT: Section not found. + * -ENXIO: Section not found. * DSP_EFWRITE: Write function failed. * -ENOSYS: Function not implemented. * Requires: @@ -412,7 +412,7 @@ typedef dsp_status(*dbll_open_fxn) (struct dbll_tar_obj *target, char *file, * size - Buffer size * Returns: * 0: Success. - * DSP_ENOSECT: Named section does not exists. + * -ENXIO: Named section does not exists. * Requires: * DBL initialized. * Valid lib. @@ -465,7 +465,7 @@ typedef void (*dbll_unload_fxn) (struct dbll_library_obj *library, * attrs - Contains free() function and handle to pass to it. * Returns: * 0: Success. - * DSP_ENOSECT: Named section not found. + * -ENXIO: Named section not found. * -ENOSYS * Requires: * DBL initialized. diff --git a/drivers/dsp/bridge/pmgr/dbll.c b/drivers/dsp/bridge/pmgr/dbll.c index 6a01f56..8e76bf6 100644 --- a/drivers/dsp/bridge/pmgr/dbll.c +++ b/drivers/dsp/bridge/pmgr/dbll.c @@ -419,7 +419,7 @@ dsp_status dbll_get_sect(struct dbll_library_obj *lib, char *name, u32 *paddr, /* Align size */ *psize = DOFF_ALIGN(*psize); } else { - status = DSP_ENOSECT; + status = -ENXIO; } } if (opened_doff) { @@ -764,7 +764,7 @@ dsp_status dbll_read_sect(struct dbll_library_obj *lib, char *name, byte_size = 1; if (!dload_get_section_info(zl_lib->desc, name, §)) { - status = DSP_ENOSECT; + status = -ENXIO; goto func_cont; } /* -- 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