Replace CHNL_E_BADCHANID with ECHRNG Signed-off-by: Omar Ramirez Luna <omar.ramirez@xxxxxx> --- arch/arm/plat-omap/include/dspbridge/dspdefs.h | 4 ++-- drivers/dsp/bridge/core/chnl_sm.c | 4 ++-- drivers/dsp/bridge/rmgr/strm.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/arm/plat-omap/include/dspbridge/dspdefs.h b/arch/arm/plat-omap/include/dspbridge/dspdefs.h index b268c5e..c4b0922 100644 --- a/arch/arm/plat-omap/include/dspbridge/dspdefs.h +++ b/arch/arm/plat-omap/include/dspbridge/dspdefs.h @@ -393,7 +393,7 @@ typedef void (*fxn_deh_notify) (struct deh_mgr *hdeh_mgr, * -ENOMEM: Insufficient memory for requested resources. * -EINVAL: Invalid number of IOReqs. * CHNL_E_OUTOFSTREAMS: No free channels available. - * CHNL_E_BADCHANID: Channel ID is out of range. + * -ECHRNG: Channel ID is out of range. * -EALREADY: Channel is in use. * -EIO: No free IO request packets available for * queuing. @@ -577,7 +577,7 @@ typedef dsp_status(*fxn_chnl_getinfo) (struct chnl_object *chnl_obj, * 0: Success; * -EFAULT: Invalid hchnl_mgr. * -EFAULT: pMgrInfo == NULL. - * CHNL_E_BADCHANID: Invalid channel ID. + * -ECHRNG: Invalid channel ID. * Requires: * Ensures: * 0: pMgrInfo points to a filled in chnl_mgrinfo diff --git a/drivers/dsp/bridge/core/chnl_sm.c b/drivers/dsp/bridge/core/chnl_sm.c index 806f0c9..db03db6 100644 --- a/drivers/dsp/bridge/core/chnl_sm.c +++ b/drivers/dsp/bridge/core/chnl_sm.c @@ -736,7 +736,7 @@ dsp_status bridge_chnl_get_mgr_info(struct chnl_mgr *hchnl_mgr, u32 uChnlID, status = -EFAULT; } } else { - status = CHNL_E_BADCHANID; + status = -ECHRNG; } } else { status = -EFAULT; @@ -801,7 +801,7 @@ dsp_status bridge_chnl_open(OUT struct chnl_object **phChnl, } else { if (uChnlId != CHNL_PICKFREE) { if (uChnlId >= chnl_mgr_obj->max_channels) - status = CHNL_E_BADCHANID; + status = -ECHRNG; else if (chnl_mgr_obj->ap_channel[uChnlId] != NULL) status = -EALREADY; diff --git a/drivers/dsp/bridge/rmgr/strm.c b/drivers/dsp/bridge/rmgr/strm.c index accfb7b..c31a5c1 100644 --- a/drivers/dsp/bridge/rmgr/strm.c +++ b/drivers/dsp/bridge/rmgr/strm.c @@ -585,7 +585,7 @@ func_cont: * assert here), and then return -EPERM. */ DBC_ASSERT(status == CHNL_E_OUTOFSTREAMS || - status == CHNL_E_BADCHANID || + status == -ECHRNG || status == -EALREADY || status == -EIO); status = -EPERM; -- 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